@cbm-common/cbm-types 0.0.201 → 0.0.203
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/lib/components/advanced-item-search-modal/advanced-item-search-modal.d.ts +2 -2
- package/lib/components/advanced-item-search-modal/item-list/item-list.d.ts +2 -1
- package/lib/domain/models/item.domain.model.d.ts +2 -2
- package/lib/domain/models/print-settings.domain.model.d.ts +4 -0
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@ export declare class CbmAdvancedItemSearchModal {
|
|
|
21
21
|
'suggest-warehouse': import("@angular/core").InputSignal<CbmWarehouseModel.ListResponse.Data | null>;
|
|
22
22
|
'with-stock': import("@angular/core").InputSignal<boolean>;
|
|
23
23
|
'with-provider-code': import("@angular/core").InputSignal<boolean>;
|
|
24
|
-
'table-config-key': import("@angular/core").InputSignal<string
|
|
24
|
+
'table-config-key': import("@angular/core").InputSignal<string>;
|
|
25
25
|
'exclude-filters': import("@angular/core").InputSignal<string[] | undefined>;
|
|
26
26
|
'exclude-columns': import("@angular/core").InputSignal<string[] | undefined>;
|
|
27
27
|
'config-columns': import("@angular/core").InputSignal<ITableColumnAdvancedItemSearchModal | undefined>;
|
|
@@ -29,7 +29,7 @@ export declare class CbmAdvancedItemSearchModal {
|
|
|
29
29
|
withStock: import("@angular/core").Signal<boolean>;
|
|
30
30
|
withProviderCode: import("@angular/core").Signal<boolean>;
|
|
31
31
|
suggestWarehouse: import("@angular/core").Signal<CbmWarehouseModel.ListResponse.Data | null>;
|
|
32
|
-
tableConfigKey: import("@angular/core").Signal<string
|
|
32
|
+
tableConfigKey: import("@angular/core").Signal<string>;
|
|
33
33
|
excludeFilters: import("@angular/core").Signal<string[] | undefined>;
|
|
34
34
|
excludeColumns: import("@angular/core").Signal<string[] | undefined>;
|
|
35
35
|
configColumns: import("@angular/core").Signal<ITableColumnAdvancedItemSearchModal | undefined>;
|
|
@@ -35,7 +35,8 @@ export declare class ItemListComponent implements OnInit {
|
|
|
35
35
|
private readonly warehouseRepository;
|
|
36
36
|
private readonly authReactiveService;
|
|
37
37
|
constructor(priceListRepository: CbmPriceListDomainRepository, manufacturerRepository: CbmManufacturerRepository, groupRepository: CbmGroupDomainRepository, itemRepository: CbmItemDomainRepository, providerRepository: CbmProviderRepository, notificationService: CbmNotificationService, tableConfigService: TableConfigurationService, destroyRef: DestroyRef, warehouseRepository: CbmWarehouseDomainRepository, authReactiveService: CbmAuthReactiveService);
|
|
38
|
-
private
|
|
38
|
+
private resetColumns;
|
|
39
|
+
private columns;
|
|
39
40
|
modalConfirmRef: import("@angular/core").Signal<CbmModalConfirmComponent>;
|
|
40
41
|
hidePricelistFilter: import("@angular/core").InputSignal<boolean | undefined>;
|
|
41
42
|
priceList: import("@angular/core").InputSignal<string | CbmPriceListModel.ListResponse.Data | undefined>;
|
|
@@ -212,10 +212,10 @@ export declare namespace CbmItemModel {
|
|
|
212
212
|
manage_by?: string;
|
|
213
213
|
manufacturer_id?: string;
|
|
214
214
|
property_id?: string;
|
|
215
|
-
stock?: boolean;
|
|
216
215
|
warehouse_id?: string;
|
|
217
|
-
provider_code?: boolean;
|
|
218
216
|
provider_id?: string;
|
|
217
|
+
stock?: boolean;
|
|
218
|
+
provider_code?: boolean;
|
|
219
219
|
location?: string;
|
|
220
220
|
}
|
|
221
221
|
interface AdvancedItemListResponse {
|
|
@@ -22,6 +22,7 @@ export declare namespace CbmPrintSettingsModel {
|
|
|
22
22
|
print_ticket: boolean;
|
|
23
23
|
print_logo_ticket: boolean;
|
|
24
24
|
accounting: boolean;
|
|
25
|
+
provider_code: boolean;
|
|
25
26
|
signature: boolean;
|
|
26
27
|
signature_data: Signature[];
|
|
27
28
|
enabled: boolean;
|
|
@@ -58,6 +59,7 @@ export declare namespace CbmPrintSettingsModel {
|
|
|
58
59
|
print_ticket: boolean;
|
|
59
60
|
print_logo_ticket: boolean;
|
|
60
61
|
accounting: boolean;
|
|
62
|
+
provider_code?: boolean;
|
|
61
63
|
signature: boolean;
|
|
62
64
|
signature_data: SaveBody.Signature[];
|
|
63
65
|
signature_ride?: boolean;
|
|
@@ -86,6 +88,7 @@ export declare namespace CbmPrintSettingsModel {
|
|
|
86
88
|
print_ticket: boolean;
|
|
87
89
|
print_logo_ticket: boolean;
|
|
88
90
|
accounting: boolean;
|
|
91
|
+
provider_code?: boolean;
|
|
89
92
|
signature: boolean;
|
|
90
93
|
signature_data: UpdateBody.Signature[];
|
|
91
94
|
signature_ride?: boolean;
|
|
@@ -121,6 +124,7 @@ export declare namespace CbmPrintSettingsModel {
|
|
|
121
124
|
print_ticket: boolean;
|
|
122
125
|
print_logo_ticket: boolean;
|
|
123
126
|
accounting: boolean;
|
|
127
|
+
provider_code: boolean;
|
|
124
128
|
signature: boolean;
|
|
125
129
|
signature_ride: boolean;
|
|
126
130
|
enabled: boolean;
|