feat(wms): 更新应付款管理功能

- 在 IWmsPayableService 接口中添加了 updatePaidAmountAndAddJournal 方法
- 在 WmsPayableController 中添加了 updatePaidAmount 控制器方法- 在 WmsPayableServiceImpl 中实现了 updatePaidAmountAndAddJournal 方法
- 新增了应付款已付金额更新和资金日记账添加的功能
This commit is contained in:
JR
2025-08-13 15:50:43 +08:00
parent fe82c72b89
commit f6fdc5ff37
3 changed files with 61 additions and 0 deletions

View File

@@ -46,4 +46,9 @@ public interface IWmsPayableService {
* 校验并批量删除应付款管理(宽松版)信息
*/
Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
/**
* 更新应付款管理(宽松版)的已付款金额和添加流水
*/
Boolean updatePaidAmountAndAddJournal(WmsPayableBo bo);
}