feat(erp): 添加应付账款相关序列号字段

- 在 PayableItem 结构体中添加 InvoiceSerial 字段
- 在 PayableProductItem 结构体中添加 PiSerial 字段
This commit is contained in:
2025-12-23 11:14:55 +08:00
parent 2f375087ef
commit ed845dfa62

View File

@@ -30,6 +30,7 @@ type ReplyPayableList struct {
type PayableItem struct {
Id int64 `json:"id"`
PayableSerial string `json:"payableSerial"`
InvoiceSerial string `json:"invoiceSerial"`
AccountingSerial string `json:"accountingSerial"`
Amount decimal.Decimal `json:"amount"`
Currency string `json:"currency"`
@@ -73,6 +74,7 @@ type ReplyPayableInfo struct {
type PayableProductItem struct {
Id int64 `json:"id"`
AccountingProductId int64 `json:"accountingProductId"`
PiSerial string `json:"piSerial"`
FactoryName string `json:"factoryName"`
Name string `json:"name"`
Serial string `json:"serial"`