feat(purchase): 为采购关联商品增加工作流 ID 字段- 在 PurchaseAssociationItem 结构体中添加 WorkflowId 字段
- 此修改用于支持采购合同的关联工作流功能
This commit is contained in:
parent
c1e44e2300
commit
9ca986711c
@ -258,11 +258,12 @@ func (p *purchase) FactoryBatch(ctx context.Context, args ArgsPurchaseFactoryBat
|
|||||||
}
|
}
|
||||||
|
|
||||||
type PurchaseAssociationItem struct {
|
type PurchaseAssociationItem struct {
|
||||||
Id int64 `json:"id"`
|
Id int64 `json:"id"`
|
||||||
FactoryId int64 `json:"factoryId"`
|
FactoryId int64 `json:"factoryId"`
|
||||||
SaleId int64 `json:"saleId"`
|
SaleId int64 `json:"saleId"`
|
||||||
PoSerial string `json:"poSerial"`
|
PoSerial string `json:"poSerial"`
|
||||||
BatchNo int64 `json:"batchNo"`
|
BatchNo int64 `json:"batchNo"`
|
||||||
|
WorkflowId int64 `json:"workflowId"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Association @TITLE 关联采购合同
|
// Association @TITLE 关联采购合同
|
||||||
|
Loading…
x
Reference in New Issue
Block a user