feat(ik3cloud): 添加推送日期字段到财务相关实体
- 在payable结构体中添加PushDate字段 - 在payment结构体中添加PushDate字段 - 在receipt结构体中添加PushDate字段 - 在receivable结构体中添加PushDate字段
This commit is contained in:
@@ -16,6 +16,7 @@ type ArgsPayableSave struct {
|
|||||||
InvoiceSerial string // 发票号
|
InvoiceSerial string // 发票号
|
||||||
CustomNumber string // 客户编码
|
CustomNumber string // 客户编码
|
||||||
FactoryNumber string // 工厂编码
|
FactoryNumber string // 工厂编码
|
||||||
|
PushDate time.Time // 推送日期
|
||||||
Date time.Time // 日期
|
Date time.Time // 日期
|
||||||
CurrencyNumber string // 币种
|
CurrencyNumber string // 币种
|
||||||
DepartmentNumber string // 部门
|
DepartmentNumber string // 部门
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ type ArgsPaymentSave struct {
|
|||||||
Remarks string // 备注
|
Remarks string // 备注
|
||||||
Costs []PaymentCostItem // 费用
|
Costs []PaymentCostItem // 费用
|
||||||
Rate decimal.Decimal // 汇率
|
Rate decimal.Decimal // 汇率
|
||||||
|
PushDate time.Time // 推送日期
|
||||||
Date time.Time // 业务日期 2006-01-02 15:04:05
|
Date time.Time // 业务日期 2006-01-02 15:04:05
|
||||||
}
|
}
|
||||||
type PaymentCostItem struct {
|
type PaymentCostItem struct {
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ type ArgsReceiptSave struct {
|
|||||||
ReceiptId int64 // 收款单ID
|
ReceiptId int64 // 收款单ID
|
||||||
Number string // 单据编号
|
Number string // 单据编号
|
||||||
ReceiptType constant.ReceiptType // 收款单类型
|
ReceiptType constant.ReceiptType // 收款单类型
|
||||||
|
PushDate time.Time // 推送日期
|
||||||
Date time.Time // 收款单日期
|
Date time.Time // 收款单日期
|
||||||
DepartmentNumber string // 部门编号
|
DepartmentNumber string // 部门编号
|
||||||
StaffXsyNumber string // 业务员编号
|
StaffXsyNumber string // 业务员编号
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ type ArgsReceivableSave struct {
|
|||||||
StaffXsyNumber string // 业务员
|
StaffXsyNumber string // 业务员
|
||||||
Products []ReceivableProductItem // 商品
|
Products []ReceivableProductItem // 商品
|
||||||
Rate decimal.Decimal // 汇率
|
Rate decimal.Decimal // 汇率
|
||||||
|
PushDate time.Time // 推送时间
|
||||||
Date time.Time // 日期
|
Date time.Time // 日期
|
||||||
DomesticShippingCost decimal.Decimal // 国内运费
|
DomesticShippingCost decimal.Decimal // 国内运费
|
||||||
ForeignShippingCost decimal.Decimal // 国外运费
|
ForeignShippingCost decimal.Decimal // 国外运费
|
||||||
|
|||||||
Reference in New Issue
Block a user