@cbm-common/cbm-types 0.0.313 → 0.0.315
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.
|
@@ -80,6 +80,7 @@ export declare namespace CbmItemModel {
|
|
|
80
80
|
category?: Item.Category;
|
|
81
81
|
unit_measure_name?: string;
|
|
82
82
|
unit_measure_code?: string;
|
|
83
|
+
unit_cost_kardex?: number;
|
|
83
84
|
price_lists?: Item.PriceList[];
|
|
84
85
|
warehouses?: Item.Warehouse[];
|
|
85
86
|
tax_iva?: Item.TaxIva;
|
|
@@ -341,6 +342,7 @@ export declare namespace CbmItemModel {
|
|
|
341
342
|
unit_measure_id?: string;
|
|
342
343
|
tax_iva_id?: string;
|
|
343
344
|
manufacturer_id?: string | null;
|
|
345
|
+
unit_cost_kardex?: number;
|
|
344
346
|
manufacturer_name?: string;
|
|
345
347
|
tax_iva_code?: string;
|
|
346
348
|
automatic_code?: boolean;
|
|
@@ -11,10 +11,14 @@ export declare namespace CbmTypeOfServiceModel {
|
|
|
11
11
|
interface Data {
|
|
12
12
|
_id: string;
|
|
13
13
|
company_id: string;
|
|
14
|
+
code: string;
|
|
14
15
|
name: string;
|
|
15
16
|
enabled: boolean;
|
|
16
17
|
created_user: string;
|
|
17
18
|
created_at: number;
|
|
19
|
+
updated_at: number;
|
|
20
|
+
updated_user: string;
|
|
21
|
+
ind_restaurant: boolean;
|
|
18
22
|
}
|
|
19
23
|
}
|
|
20
24
|
}
|