feat(ik3cloud): 添加海关编码字段到应付和应收模块
- 在Payable结构体中添加CustomsSerial字段 - 在Receivable结构体中添加CustomsSerial字段 - 为两个模块增加海关编码数据支持
This commit is contained in:
@@ -37,6 +37,7 @@ type PayableProductItem struct {
|
||||
ExTaxUnitAmount decimal.Decimal // 不含税金额
|
||||
CostAmount decimal.Decimal // 加减费用金额
|
||||
Unit string // 单位
|
||||
CustomsSerial string // 海关编码
|
||||
}
|
||||
|
||||
// Save @TITLE 保存应付
|
||||
|
||||
@@ -42,6 +42,7 @@ type ReceivableProductItem struct {
|
||||
MinusTaxAmount decimal.Decimal // 退税额
|
||||
Unit string // 单位
|
||||
MinusTaxDifference decimal.Decimal // 退税差额
|
||||
CustomsSerial string // 海关编码
|
||||
}
|
||||
|
||||
// Save @TITLE 保存应收
|
||||
|
||||
Reference in New Issue
Block a user