|
@@ -358,7 +358,7 @@ public class DeliveryAction implements IMINAction{
|
|
|
.updateByPrimaryKeySelective(detInf);
|
|
|
/**没有中奖的*/
|
|
|
}else{
|
|
|
- detInf.setIsWinning("02");
|
|
|
+ detInf.setIsWinning("00");
|
|
|
Service.lookup(IMINDataBaseService.class)
|
|
|
.getMybatisMapper(VmOrderDetailsMapper.class)
|
|
|
.updateByPrimaryKeySelective(detInf);
|
|
@@ -493,12 +493,14 @@ public class DeliveryAction implements IMINAction{
|
|
|
dlInf.setModifyUser(ordInf.getPersonId()); //修改人
|
|
|
dlInf.setModifyTime(nowTime); //修改时间
|
|
|
dlInf.setProEquRelId(detInf.getProEquRelId()); //货道编号
|
|
|
+
|
|
|
//执行新增提货信息
|
|
|
Service.lookup(IMINDataBaseService.class)
|
|
|
.getMybatisMapper(VmDeliveryInfMapper.class)
|
|
|
- .insert(dlInf);
|
|
|
+ .insertSelective(dlInf);
|
|
|
//订单明细表set提货单编号
|
|
|
detInf.setDeliveryId(dlId);
|
|
|
+ detInf.setIsDelivery("00");
|
|
|
Service.lookup(IMINDataBaseService.class)
|
|
|
.getMybatisMapper(VmOrderDetailsMapper.class)
|
|
|
.updateByPrimaryKeySelective(detInf);
|