feat(erp): 添加银行账户信息字段和批量修改功能

- 在报销单、付款单和申请单中添加银行账号和账号名称字段
- 为报销单、付款单和申请单实现批量修改银行账户信息功能
- 在ik3cloud常量中添加银行账户操作类型
- 新增字典查询相关结构体和过滤条件类型
- 更新金蝶同步相关服务以支持银行账户信息处理
This commit is contained in:
2026-01-08 11:54:02 +08:00
parent 6717454a79
commit 93524fca2f
6 changed files with 98 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ const (
ActionPayment Action = "AP_PAYBILL" // 付款单
ActionInformation Action = "BOS_ASSISTANTDATA_DETAIL" // 辅助资料
ActionReceiptAction Action = "AR_RECEIVEBILL" // 收款单
ActionBankAccount Action = "CN_BANKACNT" // 银行账户
)
var ActionIdField = map[Action]string{
@@ -99,3 +100,9 @@ type InformationType = string
const (
InformationTypeInvoiceSerial InformationType = "FYP" // 采购付款单
)
type FilterCompare = string
const (
FilterCompareEqual FilterCompare = "67"
)