md
This commit is contained in:
parent
f39dec00b8
commit
f3dd65a002
@ -393,7 +393,7 @@ public class EmisSettleBillController extends BaseController
|
||||
}
|
||||
}
|
||||
}
|
||||
return AjaxResult.success("确认成功");
|
||||
return AjaxResult.success("删除成功");
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -367,7 +367,7 @@ public class EmisSettleBillServiceImpl extends EmisBaseService implements IEmisS
|
||||
// 获取
|
||||
EmisSettleBill bill = selectEmisSettleBillById(id);
|
||||
if(!"0".equals(bill.getPaymentStatus())){
|
||||
throw new EmisBizError(EmisBizErrorType.FAIL,"已收款不允许删除");
|
||||
throw new EmisBizError(EmisBizErrorType.FAIL,"已存在收款不允许删除");
|
||||
}
|
||||
|
||||
if(!"0".equals(bill.getBlConfirmSite())){
|
||||
@ -375,7 +375,11 @@ public class EmisSettleBillServiceImpl extends EmisBaseService implements IEmisS
|
||||
}
|
||||
|
||||
if(!"0".equals(bill.getOpenBillStatus())){
|
||||
throw new EmisBizError(EmisBizErrorType.FAIL,"已开票已确认不允许删除");
|
||||
throw new EmisBizError(EmisBizErrorType.FAIL,"已存在开票不允许删除");
|
||||
}
|
||||
|
||||
if(!"0".equals(bill.getChargeStatus()) ){
|
||||
throw new EmisBizError(EmisBizErrorType.FAIL,"已核销不允许删除");
|
||||
}
|
||||
|
||||
// 清除子账单关联
|
||||
|
||||
@ -864,6 +864,10 @@ public class EmisWaybillServiceImpl extends EmisBaseService implements IEmisWayb
|
||||
dispatchOrSendManCode=emisWaybillSave.getTakePieceEmployeeCode();
|
||||
}
|
||||
|
||||
// 做订单接单确认
|
||||
emisWaybillMapper.confirmOrder(emisWaybillSave);
|
||||
|
||||
// 增加扫描记录
|
||||
Map<String,Object> scanDateItem = new HashMap<>();
|
||||
scanDateItem.put("billCode",emisWaybillSave.getBillCode());
|
||||
scanDateItem.put("dispatchOrSendManCode",dispatchOrSendManCode);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user