@cbm-common/cbm-types 0.0.138 → 0.0.140
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.
|
@@ -27,6 +27,7 @@ export declare namespace CbmPrintSettingsModel {
|
|
|
27
27
|
enabled: boolean;
|
|
28
28
|
deleted: boolean;
|
|
29
29
|
created_at: number;
|
|
30
|
+
created_user?: string;
|
|
30
31
|
updated_user: string;
|
|
31
32
|
updated_at: number;
|
|
32
33
|
signature_ride: boolean;
|
|
@@ -125,10 +126,14 @@ export declare namespace CbmPrintSettingsModel {
|
|
|
125
126
|
signature: boolean;
|
|
126
127
|
signature_ride: boolean;
|
|
127
128
|
enabled: boolean;
|
|
129
|
+
order?: number;
|
|
128
130
|
deleted: boolean;
|
|
129
131
|
signature_data: any[];
|
|
130
132
|
signature_data_ride: any[];
|
|
131
133
|
created_at: number;
|
|
134
|
+
created_user?: string;
|
|
135
|
+
updated_at?: number;
|
|
136
|
+
updated_user?: string;
|
|
132
137
|
}
|
|
133
138
|
}
|
|
134
139
|
interface ConfirmResponse {
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { DestroyRef } from "@angular/core";
|
|
2
|
+
import { FormControl } from "@angular/forms";
|
|
3
|
+
import { CbmItemModel } from "@cbm-common/cbm-types";
|
|
4
|
+
import { CbmItemDomainRepository } from "../../repositories/item.domain.repository";
|
|
5
|
+
import { CbmNotificationService } from "../notification/notification.service";
|
|
6
|
+
export declare class FindItemCodeService {
|
|
7
|
+
private readonly destroyRef;
|
|
8
|
+
private readonly itemRepository;
|
|
9
|
+
private readonly notificationService;
|
|
10
|
+
private readonly codeControl;
|
|
11
|
+
private readonly itemControl;
|
|
12
|
+
constructor(destroyRef: DestroyRef, itemRepository: CbmItemDomainRepository, notificationService: CbmNotificationService, codeControl: FormControl<string>, itemControl: FormControl<Partial<CbmItemModel.ListResponse.Item> | null>);
|
|
13
|
+
loading: import("@angular/core").WritableSignal<boolean>;
|
|
14
|
+
findCode(code?: string): Promise<void>;
|
|
15
|
+
}
|