0225财务应收账单应付账单修改
This commit is contained in:
+4
@@ -1377,6 +1377,8 @@ public class BusinessDocumentApplicationService {
|
||||
int randomFour = (int) (Math.random() * 9000 + 1000);
|
||||
String format = sd.format(now);
|
||||
String innerNumber = "YF" + format + randomFour;//应付单据号
|
||||
verification.setDriver(businessDocumentDetaliDO.getDriver());
|
||||
verification.setDriverName(businessDocumentDetaliDO.getDriverName());
|
||||
verification.setSecondSubject(secondSubjectPO.getSecondSubject());
|
||||
verification.setSecondSubjectName(secondSubjectPO.getSecondSubjectName());
|
||||
verification.setVerificationMoney(secondSubjectPO.getAmount());
|
||||
@@ -1424,6 +1426,8 @@ public class BusinessDocumentApplicationService {
|
||||
verification.setUpdateTime(now);
|
||||
verification.setUpdateBy(loginUser.getUserid());
|
||||
verification.setUpdateByName(loginUser.getUsername());
|
||||
verification.setDriver(businessDocumentDetaliDO.getDriver());
|
||||
verification.setDriverName(businessDocumentDetaliDO.getDriverName());
|
||||
// 确保 delFlag 被设置(1=正常,2=已删除)
|
||||
if (verification.getDelFlag() == null) {
|
||||
verification.setDelFlag(1);
|
||||
|
||||
+6
@@ -164,4 +164,10 @@ public class BusinessDocumentDetali extends BaseVOEntity{
|
||||
@ApiModelProperty("油卡号")
|
||||
private String fuelCardNumber;
|
||||
|
||||
@ApiModelProperty("司机姓名--修改后实际是承运商姓名")
|
||||
private String driverName;
|
||||
|
||||
@ApiModelProperty("司机姓名")
|
||||
private String driver;
|
||||
|
||||
}
|
||||
|
||||
+6
@@ -131,4 +131,10 @@ public class BusinessDocumentDetaliAuditPO{
|
||||
|
||||
@ApiModelProperty("油卡号")
|
||||
private String fuelCardNumber;
|
||||
|
||||
@ApiModelProperty("司机姓名--修改后实际是承运商姓名")
|
||||
private String driverName;
|
||||
|
||||
@ApiModelProperty("司机姓名")
|
||||
private String driver;
|
||||
}
|
||||
|
||||
+6
@@ -152,4 +152,10 @@ public class BusinessDocumentDetaliDO extends BaseVOEntity{
|
||||
|
||||
@ApiModelProperty("油卡号")
|
||||
private String fuelCardNumber;
|
||||
|
||||
@ApiModelProperty("司机姓名--修改后实际是承运商姓名")
|
||||
private String driverName;
|
||||
|
||||
@ApiModelProperty("司机姓名")
|
||||
private String driver;
|
||||
}
|
||||
|
||||
+4
@@ -242,4 +242,8 @@ public class Reconciliation extends BaseVOEntity{
|
||||
|
||||
@ApiModelProperty(value = "nc唯一标识")
|
||||
private String skNcId;
|
||||
|
||||
@ApiModelProperty(value = "收款账户")
|
||||
private String accountInformation;
|
||||
|
||||
}
|
||||
|
||||
+3
@@ -244,6 +244,9 @@ public class ReconciliationPO extends BaseVOEntity{
|
||||
@ApiModelProperty("结算币种")
|
||||
private String settlementCurrency;
|
||||
|
||||
@ApiModelProperty(value = "收款账户")
|
||||
private String accountInformation;
|
||||
|
||||
@ApiModelProperty(value = "账单科目明细")
|
||||
public List<ReconciliationAccount> reconciliationAccountDTOList;
|
||||
|
||||
|
||||
+3
@@ -277,6 +277,9 @@ public class ReconciliationDO extends BaseVOEntity{
|
||||
@ApiModelProperty(value = "nc唯一标识")
|
||||
private String skNcId;
|
||||
|
||||
@ApiModelProperty(value = "收款账户")
|
||||
private String accountInformation;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "账单科目明细")
|
||||
public List<ReconciliationAccountDTO> reconciliationAccountDTOList;
|
||||
|
||||
Reference in New Issue
Block a user