diff --git a/erp/accounting.go b/erp/accounting.go index 6fa3587..e0a8034 100644 --- a/erp/accounting.go +++ b/erp/accounting.go @@ -126,6 +126,10 @@ type ReplyAccountingInfo struct { InvoiceDateEnd *time.Time `json:"invoiceDateEnd"` InvoiceSerial string `json:"invoiceSerial"` AccountingSerial string `json:"accountingSerial"` + Currency string `json:"currency"` + CurrencyName string `json:"currencyName"` + CurrencySymbol string `json:"currencySymbol"` + CurrencyRate decimal.Decimal `json:"currencyRate"` Remark string `json:"remark"` WorkflowId int64 `json:"workflowId"` WorkflowStatus int64 `json:"workflowStatus"` @@ -156,10 +160,14 @@ type ArgsAccountingEdit struct { } type AccountingEdit struct { - InvoiceDate *time.Time // 发票日期 - InvoiceDateEnd *time.Time // 开票期限 - AccountingSerial string // 做账合同号 - Remark string // 备注 + InvoiceDate *time.Time // 发票日期 + InvoiceDateEnd *time.Time // 开票期限 + AccountingSerial string // 做账合同号 + Remark string // 备注 + Currency string // 币种 + CurrencyName string // 币种名称 + CurrencySymbol string // 币种符号 + CurrencyRate decimal.Decimal // 币种汇率 } // Edit @TITLE 编辑