增加批量设置会员当前的预付款接口,完善单据中收预付款的更新逻辑

This commit is contained in:
季圣华
2023-12-18 23:35:55 +08:00
parent 1daf602ecc
commit 0e87202d7c
8 changed files with 100 additions and 39 deletions

View File

@@ -58,4 +58,7 @@ public interface AccountHeadMapperEx {
List<AccountHead> getFinancialBillNoByBillId(
@Param("billId") Long billId);
BigDecimal getFinancialAllPriceByOrganId(
@Param("organId") Long organId);
}

View File

@@ -271,4 +271,7 @@ public interface DepotHeadMapperEx {
@Param("endTime") String endTime,
@Param("materialParam") String materialParam,
@Param("depotArray") String[] depotArray);
BigDecimal getBillAllPriceByOrganId(
@Param("organId") Long organId);
}