dts-backoffice-util 19.2.0 → 19.3.0
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/README.md +23 -17
- package/fesm2022/dts-backoffice-util.mjs +94 -37
- package/fesm2022/dts-backoffice-util.mjs.map +1 -1
- package/lib/components/totvs-schedule-execution/totvs-schedule-execution.component.d.ts +4 -0
- package/lib/components/totvs-schedule-execution/totvs-schedule-execution.model.d.ts +2 -0
- package/lib/components/totvs-schedule-execution/totvs-schedule-execution.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -45,6 +45,10 @@ export declare class TotvsScheduleExecutionComponent implements OnInit {
|
|
|
45
45
|
setActiveTab(codTab: number): void;
|
|
46
46
|
addZero(num: number): string;
|
|
47
47
|
executeSchedule(): void;
|
|
48
|
+
createJobScheduleParameters(): void;
|
|
49
|
+
verifyRepeatExecution(): void;
|
|
50
|
+
createRepeatExecutionParameters(): void;
|
|
51
|
+
finishSchedule(firstSchedure: boolean, isOK: boolean, response: object): void;
|
|
48
52
|
getHourOrMinute(value: string, type: string): number;
|
|
49
53
|
compareHour(hourInit: string, hourFinal: string): boolean;
|
|
50
54
|
validate(): boolean;
|
|
@@ -12,6 +12,7 @@ export interface IScheduleParameters {
|
|
|
12
12
|
execAppointHourFinal: string;
|
|
13
13
|
selectWeeklys: [];
|
|
14
14
|
dayOfMonth: number;
|
|
15
|
+
listExecutionID: string[];
|
|
15
16
|
}
|
|
16
17
|
export declare class ScheduleParameters implements IScheduleParameters {
|
|
17
18
|
executionType: number;
|
|
@@ -27,6 +28,7 @@ export declare class ScheduleParameters implements IScheduleParameters {
|
|
|
27
28
|
execAppointHourFinal: string;
|
|
28
29
|
selectWeeklys: [];
|
|
29
30
|
dayOfMonth: number;
|
|
31
|
+
listExecutionID: string[];
|
|
30
32
|
}
|
|
31
33
|
export interface IExecutionStatus {
|
|
32
34
|
jobScheduleID: string;
|
|
@@ -13,7 +13,7 @@ export declare class TotvsScheduleExecutionService {
|
|
|
13
13
|
constructor(http: HttpClient);
|
|
14
14
|
getFilteredItems(params: PoLookupFilteredItemsParams): Observable<any>;
|
|
15
15
|
getObjectByValue(id: string): Observable<any>;
|
|
16
|
-
createExecution(parameters:
|
|
16
|
+
createExecution(parameters: object, loading: boolean): Observable<any>;
|
|
17
17
|
createExecutionForNow(executionParams: IExecutionParameters, loading: boolean): Observable<any>;
|
|
18
18
|
getExecutionByJobScheduleID(jobScheduleID: string, loading?: boolean): Observable<IExecutionStatus>;
|
|
19
19
|
getExecutionByExecutionID(executionID: string, loading?: boolean): Observable<IExecutionStatus>;
|