From b0cb790daa2bbfae90af93e10d2eaeca7d756b47 Mon Sep 17 00:00:00 2001 From: kanade Date: Mon, 5 Jan 2026 11:24:23 +0800 Subject: [PATCH] =?UTF-8?q?feat(erp):=20=E6=B7=BB=E5=8A=A0=E6=94=B6?= =?UTF-8?q?=E6=B1=87=E5=8D=95=E4=BB=98=E6=AC=BE=E5=AE=A2=E6=88=B7=E4=BF=A1?= =?UTF-8?q?=E6=81=AF=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增 PayCustomId 字段用于存储付款客户ID - 新增 PayCustomName 字段用于存储付款客户名称 - 扩展收汇单数据结构以支持付款客户信息存储 --- erp/receipt.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erp/receipt.go b/erp/receipt.go index 423cc33..09fffd3 100644 --- a/erp/receipt.go +++ b/erp/receipt.go @@ -21,6 +21,8 @@ type ReceiptSearch struct { ReceiptSerial string // 收汇单号 CustomId int64 // 客户筛选 CustomName string // 客户筛选 + PayCustomId int64 // 付款客户 + PayCustomName string // 付款客户名称 BankName string // 结汇银行 ReceiptDateStart *time.Time // 创建开始时间 ReceiptDateEnd *time.Time // 创建结束时间