feat(erp): 更新收据和应收账款数据结构
- 在收据结构中添加付款公司字段 - 将应收账款数量类型从int64改为decimal.Decimal - 在应收账款项目中添加发票单位字段 - 更新ik3cloud中应收账款产品项目的数量类型为decimal.Decimal
This commit is contained in:
@@ -29,7 +29,7 @@ type ArgsReceivableSave struct {
|
||||
type ReceivableProductItem struct {
|
||||
Number string // 商品编码
|
||||
Name string // 商品名称
|
||||
Count int64 // 数量
|
||||
Count decimal.Decimal // 数量
|
||||
UnitPrice decimal.Decimal // 含税单价
|
||||
AddTaxRate decimal.Decimal // 税率
|
||||
ExTaxUnitPrice decimal.Decimal // 不含税单价
|
||||
|
||||
Reference in New Issue
Block a user