|
@@ -117,11 +117,13 @@ public class TbBusinessItemService extends ServiceImpl<TbBusinessItemMapper, TbB
|
|
|
TbBusinessItem tbBusinessItem = this.getById(id);
|
|
|
tbBusinessItem.setConfirm(1).setConfirmTime(new Date());
|
|
|
this.updateById(tbBusinessItem);
|
|
|
+
|
|
|
TbFeeDetails feeDetails = tbFeeDetailsService.getByBusinessItemId(id + "");
|
|
|
if(feeDetails != null){
|
|
|
feeDetails.setPickCustomerName(tbBusinessItem.getPickCustomerName());
|
|
|
tbFeeDetailsService.updateById(feeDetails);
|
|
|
}
|
|
|
+
|
|
|
//todo 通知作业方
|
|
|
List<SpAdmin> spAdminList = spAdminService.findByCustomerId(tbBusinessItem.getPickCustomerId());
|
|
|
TbBusiness tbBusiness = tbBusinessService.getById(tbBusinessItem.getBusinessId());
|