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

@@ -20,6 +20,19 @@ type DictItem struct {
Field8 any `json:"field8"`
}
type ArgsDictAll struct {
CompanyType constant.Action // 类型
FilterItem []FilterItem // 筛选
}
type FilterItem struct {
FieldName string `json:"FieldName"`
Compare constant.FilterCompare `json:"Compare"`
Value string `json:"Value"`
Left string `json:"Left"`
Right string `json:"Right"`
Logic string `json:"Logic"`
}
// All @TITLE 获取字典
func (d *dict) All(ctx context.Context, companyType constant.Action) (reply []DictItem, err error) {
xClient, err := client.GetClient(d)