服务指令-退货流程开始结束增加日志

This commit is contained in:
曹磊 2025-12-16 15:08:58 +08:00
parent 53b8e8066f
commit b6a777ea9c
1 changed files with 7 additions and 0 deletions

View File

@ -293,6 +293,9 @@ public class InvoicingOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMappe
@Override
public Result<String> beginDyHtOrder(InvoicingOrdersEntity invoicingOrdersEntity){
// try {
log.info("PoolId:"+invoicingOrdersEntity.getPoolId());
log.info("UpdateBy:"+invoicingOrdersEntity.getInitiatorId());
log.info("BizType:"+invoicingOrdersEntity.getFlowCode());
Calendar c = Calendar.getInstance();
InvoicingOrders entity = new InvoicingOrders();
entity.setPoolId(invoicingOrdersEntity.getPoolId());
@ -316,6 +319,10 @@ public class InvoicingOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMappe
@Override
public Result<String> finishDyThOrder(InvoicingOrdersEntity invoicingOrdersEntity){
// try {
log.info("PoolId:"+invoicingOrdersEntity.getPoolId());
log.info("BizId:"+invoicingOrdersEntity.getBizId());
log.info("UpdateBy:"+invoicingOrdersEntity.getInitiatorId());
log.info("BizType:"+invoicingOrdersEntity.getFlowCode());
Calendar c = Calendar.getInstance();
QueryWrapper<InvoicingOrders> ioQw = new QueryWrapper<>();
ioQw.eq("pool_id", invoicingOrdersEntity.getPoolId());