feat(erp): 添加应付账款相关序列号字段
- 在 PayableItem 结构体中添加 InvoiceSerial 字段 - 在 PayableProductItem 结构体中添加 PiSerial 字段
This commit is contained in:
@@ -30,6 +30,7 @@ type ReplyPayableList struct {
|
|||||||
type PayableItem struct {
|
type PayableItem struct {
|
||||||
Id int64 `json:"id"`
|
Id int64 `json:"id"`
|
||||||
PayableSerial string `json:"payableSerial"`
|
PayableSerial string `json:"payableSerial"`
|
||||||
|
InvoiceSerial string `json:"invoiceSerial"`
|
||||||
AccountingSerial string `json:"accountingSerial"`
|
AccountingSerial string `json:"accountingSerial"`
|
||||||
Amount decimal.Decimal `json:"amount"`
|
Amount decimal.Decimal `json:"amount"`
|
||||||
Currency string `json:"currency"`
|
Currency string `json:"currency"`
|
||||||
@@ -73,6 +74,7 @@ type ReplyPayableInfo struct {
|
|||||||
type PayableProductItem struct {
|
type PayableProductItem struct {
|
||||||
Id int64 `json:"id"`
|
Id int64 `json:"id"`
|
||||||
AccountingProductId int64 `json:"accountingProductId"`
|
AccountingProductId int64 `json:"accountingProductId"`
|
||||||
|
PiSerial string `json:"piSerial"`
|
||||||
FactoryName string `json:"factoryName"`
|
FactoryName string `json:"factoryName"`
|
||||||
Name string `json:"name"`
|
Name string `json:"name"`
|
||||||
Serial string `json:"serial"`
|
Serial string `json:"serial"`
|
||||||
|
|||||||
Reference in New Issue
Block a user