|
@@ -105,19 +105,27 @@ public class TFeeServiceImpl implements ITFeeService {
|
|
|
TWarehouseBills tWarehousebills = tWarehouseBillsMapper.selectTWarehousebillsById(fees.getfSrcpid());
|
|
|
// 费用名称
|
|
|
TFees tFees= tFeesMapper.selectTFeesById(fees.getfFeeid());
|
|
|
+ // 费用表数据
|
|
|
+ TWarehousebillsfees tWarehousebillsfees = tWarehousebillsfeesMapper.selectTWarehousebillsfeesById(fees.getfSrcid());
|
|
|
map1.put("fId",fees.getfId());
|
|
|
map1.put("fSrcid",fees.getfSrcid());
|
|
|
map1.put("fSrcpid",fees.getfSrcpid());
|
|
|
- map1.put("fMblno",tWarehousebills.getfMblno());
|
|
|
+ map1.put("fMblno",tWarehousebillsfees.getfMblno());
|
|
|
map1.put("fBscorpno",tWarehousebills.getfBscorpno());
|
|
|
- map1.put("fProductName",tWarehousebills.getfProductName());
|
|
|
- map1.put("fBsdate",tWarehousebills.getfBsdate());
|
|
|
+ map1.put("fProductName",tWarehousebillsfees.getfProductName());
|
|
|
+ map1.put("fBsdate",tWarehousebillsfees.getfBsdate());
|
|
|
map1.put("fFeeid",fees.getfFeeid());
|
|
|
map1.put("fFeeName",tFees.getfName());
|
|
|
map1.put("fSrcdc",fees.getfSrcdc());
|
|
|
map1.put("fAmt",fees.getfAmt());
|
|
|
map1.put("fAmtdr",fees.getfAmtdr());
|
|
|
map1.put("fRemarks",fees.getfRemarks());
|
|
|
+ map1.put("srcBillNo",tWarehousebillsfees.getSrcId());
|
|
|
+ map1.put("fMarks",tWarehousebillsfees.getfMarks());
|
|
|
+ map1.put("fChargedate",tWarehousebillsfees.getfChargedate());
|
|
|
+ map1.put("fBillingDeadline",tWarehousebillsfees.getfBillingDeadline());
|
|
|
+ map1.put("fBillingDays",tWarehousebillsfees.getfBillingDays());
|
|
|
+ map1.put("fInventoryDays",tWarehousebillsfees.getfInventoryDays());
|
|
|
if(tWarehousebills.getfBilltype().equals("SJRK")){
|
|
|
map1.put("fBilltype","入库");
|
|
|
} else if(tWarehousebills.getfBilltype().equals("SJCK")){
|
|
@@ -494,6 +502,11 @@ public class TFeeServiceImpl implements ITFeeService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<TWareHouseExcelItems> selectTWarehousebillsItemsList(Long fId) {
|
|
|
+ return tFeeMapper.selectTWarehousebillsItemsList(fId);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 更新费用明细
|
|
|
* @param fid
|