feat(erp): 添加应收账款业务日期字段

- 在ReplyReceivableInfo结构体中新增businessDate字段
- 该字段用于记录应收账款的业务发生日期
- 字段类型为*time.Time指针类型,支持空值处理
- JSON序列化名称为businessDate,保持与前端约定一致
This commit is contained in:
2026-06-30 14:04:13 +08:00
parent ed69aa9de9
commit d26dfa6e20

View File

@@ -72,6 +72,7 @@ func (r *receivable) Gen(ctx context.Context, shipmentId int64) (err error) {
type ReplyReceivableInfo struct { type ReplyReceivableInfo struct {
Id int64 `json:"id"` Id int64 `json:"id"`
ReceivableSerial string `json:"receivableSerial"` ReceivableSerial string `json:"receivableSerial"`
BusinessDate *time.Time `json:"businessDate"`
CustomName string `json:"customName"` CustomName string `json:"customName"`
InvoiceSerial string `json:"invoiceSerial"` InvoiceSerial string `json:"invoiceSerial"`
ReceivableAmount decimal.Decimal `json:"receivableAmount"` ReceivableAmount decimal.Decimal `json:"receivableAmount"`