Showing
5 changed files
with
16 additions
and
6 deletions
| ... | ... | @@ -294,4 +294,14 @@ public class FlowTaskServiceImpl implements FlowTaskService { |
| 294 | 294 | } |
| 295 | 295 | |
| 296 | 296 | } |
| 297 | + | |
| 298 | + @Override | |
| 299 | + public void updateConfirmationSlipMap(Map<String, Object> map) { | |
| 300 | + | |
| 301 | + } | |
| 302 | + | |
| 303 | + @Override | |
| 304 | + public void updateResultTrackingMap(Map<String, Object> map) { | |
| 305 | + | |
| 306 | + } | |
| 297 | 307 | } | ... | ... |
| ... | ... | @@ -623,7 +623,7 @@ public class PurchaseOrderInfoServiceImpl extends BaseMpServiceImpl<PurchaseOrde |
| 623 | 623 | return; |
| 624 | 624 | } |
| 625 | 625 | LambdaUpdateWrapper<PurchaseOrderInfo> updateWrapper = Wrappers.lambdaUpdate(PurchaseOrderInfo.class); |
| 626 | - updateWrapper.set(PurchaseOrderInfo::isFreeze, false) | |
| 626 | + updateWrapper.set(PurchaseOrderInfo::getFreeze, false) | |
| 627 | 627 | .in(PurchaseOrderInfo::getId, ids); |
| 628 | 628 | getBaseMapper().update(updateWrapper); |
| 629 | 629 | } |
| ... | ... | @@ -634,7 +634,7 @@ public class PurchaseOrderInfoServiceImpl extends BaseMpServiceImpl<PurchaseOrde |
| 634 | 634 | return; |
| 635 | 635 | } |
| 636 | 636 | LambdaUpdateWrapper<PurchaseOrderInfo> updateWrapper = Wrappers.lambdaUpdate(PurchaseOrderInfo.class); |
| 637 | - updateWrapper.set(PurchaseOrderInfo::isFreeze, Boolean.TRUE) | |
| 637 | + updateWrapper.set(PurchaseOrderInfo::getFreeze, Boolean.TRUE) | |
| 638 | 638 | .setSql("freeze_count = freeze_count + 1") |
| 639 | 639 | .in(PurchaseOrderInfo::getId, ids); |
| 640 | 640 | getBaseMapper().update(updateWrapper); | ... | ... |
| ... | ... | @@ -282,11 +282,11 @@ public class DraftRequestCarTicketServiceImpl extends BaseMpServiceImpl<DraftReq |
| 282 | 282 | } |
| 283 | 283 | LambdaUpdateWrapper<DraftRequestCarTicket> updateWrapper = Wrappers.lambdaUpdate(DraftRequestCarTicket.class); |
| 284 | 284 | if (flag) { |
| 285 | - updateWrapper.set(DraftRequestCarTicket::isFreeze, true) | |
| 285 | + updateWrapper.set(DraftRequestCarTicket::getFreeze, true) | |
| 286 | 286 | .setSql("freeze_count = freeze_count + 1") |
| 287 | 287 | .in(DraftRequestCarTicket::getPurchaseOrderId, orderIds); |
| 288 | 288 | } else { |
| 289 | - updateWrapper.set(DraftRequestCarTicket::isFreeze, false) | |
| 289 | + updateWrapper.set(DraftRequestCarTicket::getFreeze, false) | |
| 290 | 290 | .in(DraftRequestCarTicket::getPurchaseOrderId, orderIds); |
| 291 | 291 | } |
| 292 | 292 | getBaseMapper().update(updateWrapper); | ... | ... |