|
@@ -294,13 +294,13 @@ public class TranProcessInfoServiceImpl extends ServiceImpl<TranProcessInfoMappe
|
|
}
|
|
}
|
|
tranSettlementReport.setSettlementWeight(tranCarInfo.getLoadNetWeight());
|
|
tranSettlementReport.setSettlementWeight(tranCarInfo.getLoadNetWeight());
|
|
//应付
|
|
//应付
|
|
- tranSettlementReport.setAmountIngPayable(tranProcessInfo.getTranPrice() * tranSettlementReport.getSettlementWeight());
|
|
|
|
|
|
+ tranSettlementReport.setAmountIngPayable(Float.valueOf(tranCarInfo.getTranPrice()) * tranSettlementReport.getSettlementWeight());
|
|
//未付
|
|
//未付
|
|
- tranSettlementReport.setAmountNotPayable(tranProcessInfo.getTranPrice() * tranSettlementReport.getSettlementWeight());
|
|
|
|
|
|
+ tranSettlementReport.setAmountNotPayable(Float.valueOf(tranCarInfo.getTranPrice()) * tranSettlementReport.getSettlementWeight());
|
|
tranSettlementReport.setTranCarNo(tranCarInfo.getTranCarNo());
|
|
tranSettlementReport.setTranCarNo(tranCarInfo.getTranCarNo());
|
|
tranSettlementReport.setLoadingWeight(tranCarInfo.getLoadNetWeight());
|
|
tranSettlementReport.setLoadingWeight(tranCarInfo.getLoadNetWeight());
|
|
tranSettlementReport.setLoadingImg(tranCarInfo.getLoadPoundImg());
|
|
tranSettlementReport.setLoadingImg(tranCarInfo.getLoadPoundImg());
|
|
- tranSettlementReport.setTransportPrice(tranProcessInfo.getTranPrice());
|
|
|
|
|
|
+ tranSettlementReport.setTransportPrice(Float.valueOf(tranCarInfo.getTranPrice()));
|
|
tranSettlementReportService.insert(tranSettlementReport);
|
|
tranSettlementReportService.insert(tranSettlementReport);
|
|
boolean isStartWorkflow = org.apache.commons.lang3.StringUtils.isBlank(tranSettlementReport.getWorkflowId());
|
|
boolean isStartWorkflow = org.apache.commons.lang3.StringUtils.isBlank(tranSettlementReport.getWorkflowId());
|
|
// 不是退回的单子
|
|
// 不是退回的单子
|