@cbm-common/cbm-types 0.0.325 → 0.0.327
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.
|
@@ -157,6 +157,11 @@ export declare namespace CbmChargesForOrderVehicleModel {
|
|
|
157
157
|
collection_origin_document_nomenclature_number: string;
|
|
158
158
|
collection_origin_name: string;
|
|
159
159
|
event_module_origin: string;
|
|
160
|
+
default_cost_center_id?: string;
|
|
161
|
+
default_cost_center_code?: string;
|
|
162
|
+
default_cost_center_name?: string;
|
|
163
|
+
default_cost_center_father_code?: string;
|
|
164
|
+
default_cost_center_father_name?: string;
|
|
160
165
|
charges_detail: SaveBody.Detail[];
|
|
161
166
|
}
|
|
162
167
|
namespace SaveBody {
|
|
@@ -256,21 +261,54 @@ export declare namespace CbmChargesForOrderVehicleModel {
|
|
|
256
261
|
period_year: string;
|
|
257
262
|
document_nomenclature: string;
|
|
258
263
|
document_number: string;
|
|
264
|
+
ind_automatically_added_overnight?: boolean;
|
|
259
265
|
collection_origin_id: string;
|
|
260
266
|
collection_origin_name: string;
|
|
261
267
|
collection_origin_document_nomenclature_number: string;
|
|
262
268
|
event_module_origin: string;
|
|
269
|
+
vehicle_license_plate?: string;
|
|
270
|
+
sequence_order_vehicle?: string;
|
|
271
|
+
client_business_name?: string;
|
|
272
|
+
client_document_number?: string;
|
|
263
273
|
sales_account_id: string;
|
|
264
274
|
sales_account_sequence: string;
|
|
265
275
|
sales_account_created_at: number;
|
|
276
|
+
ind_accommodation?: boolean;
|
|
266
277
|
enabled: boolean;
|
|
267
278
|
deleted: boolean;
|
|
279
|
+
deleted_at?: number;
|
|
268
280
|
user_id: string;
|
|
269
281
|
created_user: string;
|
|
270
282
|
created_at: number;
|
|
283
|
+
charges_type?: string;
|
|
271
284
|
charges_detail: Data.Detail[];
|
|
285
|
+
data_origin?: Data.DataOrigin;
|
|
272
286
|
}
|
|
273
287
|
namespace Data {
|
|
288
|
+
interface DataOrigin {
|
|
289
|
+
vehicle_id?: string;
|
|
290
|
+
vehicle_license_plate?: string;
|
|
291
|
+
vehicle_type?: string;
|
|
292
|
+
vehicle_brand?: string;
|
|
293
|
+
vehicle_model?: string;
|
|
294
|
+
vehicle_color?: string;
|
|
295
|
+
vehicle_cylinder?: string;
|
|
296
|
+
vehicle_year?: string;
|
|
297
|
+
vehicle_registry_code?: string;
|
|
298
|
+
vehicle_chassis_number?: string;
|
|
299
|
+
vehicle_engine_number?: string;
|
|
300
|
+
vehicle_country_id?: string;
|
|
301
|
+
vehicle_country_name?: string;
|
|
302
|
+
vehicle_country_code?: string;
|
|
303
|
+
vehicle_country_short_name?: string;
|
|
304
|
+
vehicle_type_id?: string;
|
|
305
|
+
vehicle_type_name?: string;
|
|
306
|
+
vehicle_class?: string;
|
|
307
|
+
vehicle_fuel?: string;
|
|
308
|
+
order_document_nomenclature?: string;
|
|
309
|
+
order_document_number?: string;
|
|
310
|
+
order_document_date?: number;
|
|
311
|
+
}
|
|
274
312
|
interface Detail {
|
|
275
313
|
_id: string;
|
|
276
314
|
company_id: string;
|
|
@@ -280,6 +318,7 @@ export declare namespace CbmChargesForOrderVehicleModel {
|
|
|
280
318
|
item_code: string;
|
|
281
319
|
item_name: string;
|
|
282
320
|
item_barcode: string;
|
|
321
|
+
type: string;
|
|
283
322
|
category_id: string;
|
|
284
323
|
category_name: string;
|
|
285
324
|
price_list_id: string;
|
|
@@ -291,11 +330,11 @@ export declare namespace CbmChargesForOrderVehicleModel {
|
|
|
291
330
|
cost_center_father_name: string;
|
|
292
331
|
tax_iva_id: string;
|
|
293
332
|
tax_iva_rate: number;
|
|
294
|
-
unit_measure_id
|
|
295
|
-
unit_measure_type
|
|
296
|
-
unit_measure_abbreviation
|
|
297
|
-
unit_measure_name
|
|
298
|
-
unit_measure_quantity
|
|
333
|
+
unit_measure_id?: string;
|
|
334
|
+
unit_measure_type?: string;
|
|
335
|
+
unit_measure_abbreviation?: string;
|
|
336
|
+
unit_measure_name?: string;
|
|
337
|
+
unit_measure_quantity?: number;
|
|
299
338
|
amount: number;
|
|
300
339
|
price_type_id: string;
|
|
301
340
|
price_type: string;
|
|
@@ -305,7 +344,9 @@ export declare namespace CbmChargesForOrderVehicleModel {
|
|
|
305
344
|
discount_rate: number;
|
|
306
345
|
unit_discount: number;
|
|
307
346
|
total_discount: number;
|
|
347
|
+
unit_price?: number;
|
|
308
348
|
created_user: string;
|
|
349
|
+
kit_data?: any[];
|
|
309
350
|
created_at: number;
|
|
310
351
|
charges_detail_tax: Detail.Tax[];
|
|
311
352
|
}
|
|
@@ -319,6 +360,7 @@ export declare namespace CbmChargesForOrderVehicleModel {
|
|
|
319
360
|
item_code: string;
|
|
320
361
|
item_name: string;
|
|
321
362
|
item_barcode: string;
|
|
363
|
+
type?: string;
|
|
322
364
|
category_id: string;
|
|
323
365
|
category_name: string;
|
|
324
366
|
price_list_id: string;
|
|
@@ -330,11 +372,11 @@ export declare namespace CbmChargesForOrderVehicleModel {
|
|
|
330
372
|
cost_center_father_name: string;
|
|
331
373
|
tax_iva_id: string;
|
|
332
374
|
tax_iva_rate: number;
|
|
333
|
-
unit_measure_id
|
|
334
|
-
unit_measure_type
|
|
335
|
-
unit_measure_abbreviation
|
|
336
|
-
unit_measure_name
|
|
337
|
-
unit_measure_quantity
|
|
375
|
+
unit_measure_id?: string;
|
|
376
|
+
unit_measure_type?: string;
|
|
377
|
+
unit_measure_abbreviation?: string;
|
|
378
|
+
unit_measure_name?: string;
|
|
379
|
+
unit_measure_quantity?: number;
|
|
338
380
|
amount: number;
|
|
339
381
|
price_type_id: string;
|
|
340
382
|
price_type: string;
|
|
@@ -344,7 +386,9 @@ export declare namespace CbmChargesForOrderVehicleModel {
|
|
|
344
386
|
discount_rate: number;
|
|
345
387
|
unit_discount: number;
|
|
346
388
|
total_discount: number;
|
|
389
|
+
unit_price?: number;
|
|
347
390
|
created_user: string;
|
|
391
|
+
kit_data?: any[];
|
|
348
392
|
created_at: number;
|
|
349
393
|
charges_detail_tax: Tax[];
|
|
350
394
|
}
|