From f1a0a9af6242060f449230a4f8e648fe5e674a6a Mon Sep 17 00:00:00 2001 From: kanade Date: Wed, 15 Jul 2026 15:57:11 +0800 Subject: [PATCH] =?UTF-8?q?feat(ik3cloud):=20=E6=B7=BB=E5=8A=A0=E6=8E=A8?= =?UTF-8?q?=E9=80=81=E6=97=A5=E6=9C=9F=E5=AD=97=E6=AE=B5=E5=88=B0=E8=B4=A2?= =?UTF-8?q?=E5=8A=A1=E7=9B=B8=E5=85=B3=E5=AE=9E=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在payable结构体中添加PushDate字段 - 在payment结构体中添加PushDate字段 - 在receipt结构体中添加PushDate字段 - 在receivable结构体中添加PushDate字段 --- ik3cloud/payable.go | 1 + ik3cloud/payment.go | 1 + ik3cloud/receipt.go | 1 + ik3cloud/receivable.go | 1 + 4 files changed, 4 insertions(+) diff --git a/ik3cloud/payable.go b/ik3cloud/payable.go index bb17dff..752f14c 100644 --- a/ik3cloud/payable.go +++ b/ik3cloud/payable.go @@ -16,6 +16,7 @@ type ArgsPayableSave struct { InvoiceSerial string // 发票号 CustomNumber string // 客户编码 FactoryNumber string // 工厂编码 + PushDate time.Time // 推送日期 Date time.Time // 日期 CurrencyNumber string // 币种 DepartmentNumber string // 部门 diff --git a/ik3cloud/payment.go b/ik3cloud/payment.go index c021999..9709ba2 100644 --- a/ik3cloud/payment.go +++ b/ik3cloud/payment.go @@ -24,6 +24,7 @@ type ArgsPaymentSave struct { Remarks string // 备注 Costs []PaymentCostItem // 费用 Rate decimal.Decimal // 汇率 + PushDate time.Time // 推送日期 Date time.Time // 业务日期 2006-01-02 15:04:05 } type PaymentCostItem struct { diff --git a/ik3cloud/receipt.go b/ik3cloud/receipt.go index f5d5e65..55ef84b 100644 --- a/ik3cloud/receipt.go +++ b/ik3cloud/receipt.go @@ -15,6 +15,7 @@ type ArgsReceiptSave struct { ReceiptId int64 // 收款单ID Number string // 单据编号 ReceiptType constant.ReceiptType // 收款单类型 + PushDate time.Time // 推送日期 Date time.Time // 收款单日期 DepartmentNumber string // 部门编号 StaffXsyNumber string // 业务员编号 diff --git a/ik3cloud/receivable.go b/ik3cloud/receivable.go index eac698e..5890efb 100644 --- a/ik3cloud/receivable.go +++ b/ik3cloud/receivable.go @@ -20,6 +20,7 @@ type ArgsReceivableSave struct { StaffXsyNumber string // 业务员 Products []ReceivableProductItem // 商品 Rate decimal.Decimal // 汇率 + PushDate time.Time // 推送时间 Date time.Time // 日期 DomesticShippingCost decimal.Decimal // 国内运费 ForeignShippingCost decimal.Decimal // 国外运费