@cbm-common/cbm-types 0.0.286 → 0.0.287
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.
|
@@ -57,7 +57,7 @@ export declare class CbmDetailBySectionComponent implements OnInit {
|
|
|
57
57
|
dropListIds: import("@angular/core").Signal<string[]>;
|
|
58
58
|
allSectionsConsolidated: import("@angular/core").Signal<boolean>;
|
|
59
59
|
ngOnInit(): void;
|
|
60
|
-
getConfig(): void;
|
|
60
|
+
getConfig(onlyConfig?: boolean): void;
|
|
61
61
|
setLabels(labels: Partial<ReturnType<typeof this.labels>>): void;
|
|
62
62
|
setDetail(input: Array<CbmDetailBySectionModel.InputDetail>): void;
|
|
63
63
|
setLoadedPrintoutConfig(config: {
|
|
@@ -530,11 +530,15 @@ export declare namespace CbmSalesAccountModel {
|
|
|
530
530
|
price_type_id: string;
|
|
531
531
|
price_type: string;
|
|
532
532
|
price_type_description: string;
|
|
533
|
+
type: string;
|
|
534
|
+
amount: number;
|
|
533
535
|
price_base: number;
|
|
534
536
|
total_price: number;
|
|
535
537
|
discount_rate: number;
|
|
536
538
|
unit_discount: number;
|
|
537
539
|
total_discount: number;
|
|
540
|
+
vehicle_order_request_id?: string;
|
|
541
|
+
vehicle_order_request_detail_id?: string;
|
|
538
542
|
commentary_item?: string;
|
|
539
543
|
replace_item_name?: string;
|
|
540
544
|
sales_account_detail_tax: Tax[];
|