From 05474641b3afc4d827e1eb29135834379c73670f Mon Sep 17 00:00:00 2001 From: kanade Date: Tue, 15 Sep 2026 14:35:52 +0800 Subject: [PATCH] =?UTF-8?q?feat(logic):=20=E6=B7=BB=E5=8A=A0=E5=87=BA?= =?UTF-8?q?=E8=BF=90=E5=8F=91=E7=A5=A8=E5=8F=B7=E7=B2=BE=E7=A1=AE=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在receivable逻辑中新增InvoiceSerialEq字段的精确匹配查询 - 实现出运发票号的相等条件过滤功能 - 扩展shipment查询条件以支持精确搜索功能 --- erp/receivable.go | 1 + 1 file changed, 1 insertion(+) diff --git a/erp/receivable.go b/erp/receivable.go index 68d1f55..8b0e485 100644 --- a/erp/receivable.go +++ b/erp/receivable.go @@ -21,6 +21,7 @@ type ReceivableSearch struct { CustomId int64 // 客户id CustomName string // 客户名称 InvoiceSerial string // 出运发票号 + InvoiceSerialEq string // 出运发票号 CreatedAtStart *time.Time // 创建开始时间 CreatedAtEnd *time.Time // 创建结束时间 PermissionStaffIds []int64 // 权限员工id