Compare commits
No commits in common. "085a8103de74598405c209456139aef4c786ead1" and "b891bfc9c52d8de7f36dabba4fd2f788916170ff" have entirely different histories.
085a8103de
...
b891bfc9c5
|
@ -61,14 +61,12 @@ type WarehouseSupplier struct {
|
||||||
|
|
||||||
// WarehouseOrder ...
|
// WarehouseOrder ...
|
||||||
type WarehouseOrder struct {
|
type WarehouseOrder struct {
|
||||||
MinimumValue float64 `json:"minimumValue"`
|
MinimumValue float64 `json:"minimumValue"`
|
||||||
PaymentMethod WarehousePaymentMethod `json:"paymentMethod"`
|
PaymentMethod WarehousePaymentMethod `json:"paymentMethod"`
|
||||||
IsLimitNumberOfPurchases bool `json:"isLimitNumberOfPurchases"`
|
IsLimitNumberOfPurchases bool `json:"isLimitNumberOfPurchases"`
|
||||||
LimitNumberOfPurchases int64 `json:"limitNumberOfPurchases"`
|
LimitNumberOfPurchases int64 `json:"limitNumberOfPurchases"`
|
||||||
NotifyOnNewOrder WarehouseConfigNotifyOnNewOrder `json:"notifyOnNewOrder"`
|
NotifyOnNewOrder WarehouseConfigNotifyOnNewOrder `json:"notifyOnNewOrder"`
|
||||||
LabelSize string `json:"labelSize"`
|
LabelSize string `json:"labelSize"`
|
||||||
MaximumOrderValue float64 `json:"maximumOrderValue"`
|
|
||||||
MaximumNumberPerBuyerEachMonth float64 `json:"maximumNumberPerBuyerEachMonth"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// WarehouseConfigNotifyOnNewOrder ...
|
// WarehouseConfigNotifyOnNewOrder ...
|
||||||
|
|
Loading…
Reference in New Issue