This commit is contained in:
777
2025-11-28 18:09:24 +08:00
parent ea9c4f2a61
commit 7f9b7bc639
2 changed files with 4 additions and 1 deletions

View File

@@ -69,7 +69,8 @@ public class SettingAppController {
.eq(Goods::getStatus,0)
.orderByAsc(Goods::getPrice));
list.forEach(i -> {
i.setAliAmountDiff(i.getAmount() - i.getWxAmount());
// i.setAliAmountDiff(i.getAmount() - i.getWxAmount());
i.setAliAmountDiff(0L);
});
vo.setGoods(list);
return R.ok(vo);