服务指令-流程createBy、updateBy改为createEmp、updateEmp
This commit is contained in:
parent
f371872efd
commit
0e41eb3c86
|
|
@ -196,8 +196,8 @@
|
|||
<update id="updateOrder">
|
||||
update nu_biz_nu_invoicing_directive_order
|
||||
set update_time = #{updateTime}
|
||||
<if test="updateBy != null and updateBy != ''">
|
||||
,update_by = #{updateBy}
|
||||
<if test="updateEmp != null and updateEmp != ''">
|
||||
,update_emp = #{updateEmp}
|
||||
</if>
|
||||
<if test="beginTime != null">
|
||||
,begin_time = #{beginTime}
|
||||
|
|
|
|||
|
|
@ -88,7 +88,7 @@ public class InvoicingOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMappe
|
|||
entity.setId(invoicingOrdersEntity.getId());
|
||||
entity.setBeginTime(c.getTime());
|
||||
entity.setIzStart("Y");
|
||||
entity.setUpdateBy(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateEmp(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateTime(c.getTime());
|
||||
entity.setBizType(invoicingOrdersEntity.getFlowCode());
|
||||
baseMapper.updateOrder(entity);
|
||||
|
|
@ -114,7 +114,7 @@ public class InvoicingOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMappe
|
|||
entity.setId(invoicingOrdersEntity.getId());
|
||||
entity.setFinishTime(c.getTime());
|
||||
entity.setIzFinish("Y");
|
||||
entity.setUpdateBy(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateEmp(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateTime(c.getTime());
|
||||
entity.setBizType(invoicingOrdersEntity.getFlowCode());
|
||||
entity.setTollPrice(DirectivePrice.getTollPrice());
|
||||
|
|
@ -301,7 +301,7 @@ public class InvoicingOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMappe
|
|||
entity.setPoolId(invoicingOrdersEntity.getPoolId());
|
||||
entity.setBeginTime(c.getTime());
|
||||
entity.setIzStart("Y");
|
||||
entity.setUpdateBy(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateEmp(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateTime(c.getTime());
|
||||
entity.setBizType(invoicingOrdersEntity.getFlowCode());
|
||||
baseMapper.updateOrder(entity);
|
||||
|
|
@ -333,7 +333,7 @@ public class InvoicingOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMappe
|
|||
entity.setBizId(invoicingOrdersEntity.getBizId());
|
||||
entity.setFinishTime(c.getTime());
|
||||
entity.setIzFinish("Y");
|
||||
entity.setUpdateBy(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateEmp(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateTime(c.getTime());
|
||||
entity.setBizType(invoicingOrdersEntity.getFlowCode());
|
||||
entity.setTollPrice(DirectivePrice.getTollPrice());
|
||||
|
|
|
|||
|
|
@ -67,7 +67,7 @@ public class QlOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMapper, Invo
|
|||
InvoicingOrders entity = new InvoicingOrders();
|
||||
entity.setId(order.getId());
|
||||
entity.setBizId(invoicingOrdersEntity.getBizId());
|
||||
entity.setUpdateBy(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateEmp(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateTime(new Date());
|
||||
baseMapper.updateOrder(entity);
|
||||
}
|
||||
|
|
@ -184,7 +184,7 @@ public class QlOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMapper, Invo
|
|||
entity.setId(order.getId());
|
||||
entity.setIzRollback("Y");
|
||||
entity.setRemarks("请领回退");
|
||||
entity.setUpdateBy(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateEmp(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateTime(new Date());
|
||||
baseMapper.updateOrder(entity);
|
||||
//回退指令
|
||||
|
|
@ -225,7 +225,7 @@ public class QlOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMapper, Invo
|
|||
entity.setDelFlag("1");
|
||||
entity.setIzFinish("Y");
|
||||
entity.setFinishTime(c.getTime());
|
||||
entity.setUpdateBy(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateEmp(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateTime(c.getTime());
|
||||
entity.setRemarks("请领申请作废");
|
||||
baseMapper.updateOrder(entity);
|
||||
|
|
@ -264,7 +264,7 @@ public class QlOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMapper, Invo
|
|||
entity.setDelFlag("1");
|
||||
entity.setIzFinish("Y");
|
||||
entity.setFinishTime(c.getTime());
|
||||
entity.setUpdateBy(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateEmp(invoicingOrdersEntity.getInitiatorId());
|
||||
entity.setUpdateTime(c.getTime());
|
||||
entity.setRemarks("请领回退作废");
|
||||
baseMapper.updateOrder(entity);
|
||||
|
|
@ -310,7 +310,7 @@ public class QlOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMapper, Invo
|
|||
nextEntity.setIzStart("N");
|
||||
nextEntity.setIzFinish("N");
|
||||
nextEntity.setIzRollback(izRollback);
|
||||
nextEntity.setCreateBy(invoicingOrdersEntity.getInitiatorId());
|
||||
nextEntity.setCreateEmp(invoicingOrdersEntity.getInitiatorId());
|
||||
nextEntity.setCreateTime(c.getTime());
|
||||
nextEntity.setDelFlag("0");
|
||||
nextEntity.setInitiatorId(initiatorId);
|
||||
|
|
|
|||
|
|
@ -103,7 +103,7 @@ public class ThOrdersServiceImpl extends ServiceImpl<InvoicingOrdersMapper, Invo
|
|||
nextEntity.setIzStart("N");
|
||||
nextEntity.setIzFinish("N");
|
||||
nextEntity.setIzRollback(izRollback);
|
||||
nextEntity.setCreateBy(invoicingOrdersEntity.getInitiatorId());
|
||||
nextEntity.setCreateEmp(invoicingOrdersEntity.getInitiatorId());
|
||||
nextEntity.setCreateTime(c.getTime());
|
||||
nextEntity.setDelFlag("0");
|
||||
nextEntity.setInitiatorId(initiatorId);
|
||||
|
|
|
|||
Loading…
Reference in New Issue