Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
zhou-hongcheng
2026-03-14 15:36:04 +08:00
5 changed files with 11 additions and 3 deletions
@@ -255,8 +255,8 @@ public class BillingStatementApplicationService {
billingStatementDO.setSecondSubjectCode(expenseAccountPO.getSubjectCode()); billingStatementDO.setSecondSubjectCode(expenseAccountPO.getSubjectCode());
billingStatementDO.setSecondSubjectName(expenseAccountPO.getSubjectName()); billingStatementDO.setSecondSubjectName(expenseAccountPO.getSubjectName());
} }
billingStatementDO.setBelongModuleCode(expenseAccountPO.getBelongModuleCode()); //billingStatementDO.setBelongModuleCode(expenseAccountPO.getBelongModuleCode());
billingStatementDO.setBelongModule(expenseAccountPO.getBelongModule()); //billingStatementDO.setBelongModule(expenseAccountPO.getBelongModule());
} }
} }
//根据结算对象id查询结算对象数据,并赋值 //根据结算对象id查询结算对象数据,并赋值
@@ -615,4 +615,4 @@ public class BillingStatementApplicationService {
} }
return billingStatementDomainService.getBillDetailsList(billingStatementDO); return billingStatementDomainService.getBillDetailsList(billingStatementDO);
} }
} }
@@ -203,5 +203,7 @@ public class BmsInvoiceList extends BaseVOEntity {
@ApiModelProperty(value = "一级组织ID") @ApiModelProperty(value = "一级组织ID")
@Excel(name = "一级组织ID", width = 15) @Excel(name = "一级组织ID", width = 15)
private Long topOrganizationId; private Long topOrganizationId;
@ApiModelProperty("结算币种")
private String settlementCurrency;
} }
@@ -70,6 +70,9 @@ public class BmsInvoiceListAddDTO implements Serializable {
@Excel(name = "对账单金额", width = 15) @Excel(name = "对账单金额", width = 15)
private BigDecimal billAmount; private BigDecimal billAmount;
@ApiModelProperty("结算币种")
private String settlementCurrency;
private List<BmsMakeOutInvoice> bmsMakeOutInvoices; private List<BmsMakeOutInvoice> bmsMakeOutInvoices;
} }
@@ -129,6 +129,8 @@ public class BmsInvoiceListDTO implements Serializable {
@ApiModelProperty(value = "所属部门") @ApiModelProperty(value = "所属部门")
@Excel(name = "所属部门", width = 15) @Excel(name = "所属部门", width = 15)
private String sysOrgCode; private String sysOrgCode;
@ApiModelProperty("结算币种")
private String settlementCurrency;
/**开票表集合*/ /**开票表集合*/
@ApiModelProperty(value = "开票表集合") @ApiModelProperty(value = "开票表集合")
@@ -124,6 +124,7 @@
a.invoice_code, a.invoice_code,
a.tracking_number, a.tracking_number,
a.apply_number, a.apply_number,
a.SETTLEMENT_CURRENCY as settlementCurrency,
a.organization_id AS organizationId, a.organization_id AS organizationId,
a.organization_name AS organizationName, a.organization_name AS organizationName,
a.tax_reg_account AS taxRegAccount, a.tax_reg_account AS taxRegAccount,