批量开票申请保存、删除反写付款单状态
This commit is contained in:
parent
81a710ce2a
commit
e1f1acd2ea
|
|
@ -27,7 +27,7 @@ public class PayableApplyBillDeleteOperationPlugin extends AbstractOperationServ
|
|||
for (DynamicObject bill : bills) {
|
||||
long billId = bill.getLong("id");
|
||||
//查询上游付款单
|
||||
List<BFRow> bfRows = BFTrackerServiceHelper.loadBillLinkUp("cdm_payablebill",
|
||||
List<BFRow> bfRows = BFTrackerServiceHelper.loadBillLinkUp(bill.getDataEntityType().getName(),
|
||||
new Long[]{billId}, true);
|
||||
HashSet<Long> payBillIds = new HashSet<>();
|
||||
for (BFRow bfRow : bfRows) {
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ public class PayableApplyBillSaveOperationPlugin extends AbstractOperationServic
|
|||
for (DynamicObject bill : bills) {
|
||||
long billId = bill.getLong("id");
|
||||
//查询上游付款单
|
||||
List<BFRow> bfRows = BFTrackerServiceHelper.loadBillLinkUp("cdm_payablebill",
|
||||
List<BFRow> bfRows = BFTrackerServiceHelper.loadBillLinkUp(bill.getDataEntityType().getName(),
|
||||
new Long[]{billId}, true);
|
||||
HashSet<Long> payBillIds = new HashSet<>();
|
||||
for (BFRow bfRow : bfRows) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue