feat(erp): 添加收汇公司名称字段并增加应收应付单修改功能

- 在 shipment bean 中添加 RecCompanyName 字段用于存储收汇公司名称
- 在 payable service 中新增 Edit 方法支持修改付款单业务日期
- 在 receivable service 中新增 Edit 方法支持修改收款单业务日期
- 更新 shipment 结构体定义添加收汇公司名称相关字段
This commit is contained in:
2026-06-26 16:00:05 +08:00
parent 47b521845d
commit 0df497b389
4 changed files with 34 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ type ReplyShipmentInfo struct {
RecBankCardNo string `json:"recBankCardNo"`
RecBankCardName string `json:"recBankCardName"`
RecBankAddress string `json:"recBankAddress"`
RecCompanyName string `json:"recCompanyName"`
Shipper string `json:"shipper"`
Consignee string `json:"consignee"`
Notifier string `json:"notifier"`