@erp-galoper/types 1.0.1609 → 1.0.1610
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/openapi.ts +4 -11
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -45963,13 +45963,10 @@ export interface components {
|
|
|
45963
45963
|
/**
|
|
45964
45964
|
* Item
|
|
45965
45965
|
* @description ID of the item to which the pricing is applied
|
|
45966
|
-
*
|
|
45967
|
-
*
|
|
45968
|
-
*
|
|
45969
|
-
*
|
|
45970
|
-
* - if pricing method is profit filter by costStrategy one of [fifo,lifo, wac ]
|
|
45971
|
-
* - if pricing method is manual filter by costStrategy = marketCost
|
|
45972
|
-
* - item can be filtered by: name, barcode, sku code or short name
|
|
45966
|
+
* get items from /api/v1/inventory/items :
|
|
45967
|
+
* filter by :
|
|
45968
|
+
* - viewType equal to flat, role not equal to template
|
|
45969
|
+
* - item can be filtered by: name, barcode, sku code or short name
|
|
45973
45970
|
*/
|
|
45974
45971
|
item: number;
|
|
45975
45972
|
/**
|
|
@@ -46093,10 +46090,6 @@ export interface components {
|
|
|
46093
46090
|
* @description - End date until which the price list is valid. Leave blank if the price list does not have an expiration date.- visible when price list type not equal to retail
|
|
46094
46091
|
*/
|
|
46095
46092
|
endDate?: string;
|
|
46096
|
-
/**
|
|
46097
|
-
* @description Pricing method applied to the item. If the cost strategy of the item is 'fifo', 'lifo', 'wac', the pricing method should be 'profit'
|
|
46098
|
-
* - If the cost strategy is 'marketcost', the pricing method should be 'manual'.
|
|
46099
|
-
*/
|
|
46100
46093
|
pricingMethod: components["schemas"]["PRICING_METHOD_CHOICES"];
|
|
46101
46094
|
/** @description Pricing type: 'fixed' or 'range'. If 'fixed' and the pricing method is 'manual', the item will have a unit price. If 'range' and the pricing method is 'manual', the item will have both a minimum and maximum price. If 'fixed' and the pricing method is 'profit', the item will have a profit percentage. If 'range' and the pricing method is 'profit', the item will have both a minimum and maximum profit percentage. */
|
|
46102
46095
|
pricingType: components["schemas"]["PRICING_TYPE_CHOICES"];
|