@barcoding/widget-piecework-in 3.10.0 → 4.0.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/{esm2020 → esm2022}/lib/config/config.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/piece-work-in-form/piece-work-in-form.component.mjs +4 -4
- package/{esm2020 → esm2022}/lib/widget-piecework-in.component.mjs +7 -7
- package/{esm2020 → esm2022}/lib/widget-piecework-in.module.mjs +40 -40
- package/fesm2022/barcoding-widget-piecework-in.mjs +589 -0
- package/{fesm2015 → fesm2022}/barcoding-widget-piecework-in.mjs.map +1 -1
- package/lib/widget-piecework-in.module.d.ts +1 -1
- package/package.json +9 -15
- package/fesm2015/barcoding-widget-piecework-in.mjs +0 -590
- package/fesm2020/barcoding-widget-piecework-in.mjs +0 -589
- package/fesm2020/barcoding-widget-piecework-in.mjs.map +0 -1
- /package/{esm2020 → esm2022}/barcoding-widget-piecework-in.mjs +0 -0
- /package/{esm2020 → esm2022}/public-api.mjs +0 -0
|
@@ -0,0 +1,589 @@
|
|
|
1
|
+
import { __decorate } from 'tslib';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { Component, Inject, Pipe, NgModule } from '@angular/core';
|
|
4
|
+
import * as i8$1 from '@angular/material/table';
|
|
5
|
+
import { MatTableDataSource, MatTableModule } from '@angular/material/table';
|
|
6
|
+
import * as i4 from '@ngxs/store';
|
|
7
|
+
import { Select, NgxsModule } from '@ngxs/store';
|
|
8
|
+
import * as i2 from '@barcoding/gridster-core';
|
|
9
|
+
import { ConfigInterfaceDashboard, DynamicComponentLoaderModule } from '@barcoding/gridster-core';
|
|
10
|
+
import { Subject } from 'rxjs';
|
|
11
|
+
import { ResetStorePieceWork, PieceWorkFrontState } from '@barcoding/module-piecework';
|
|
12
|
+
import { AuthState } from '@barcoding/auth-core';
|
|
13
|
+
import * as i3 from '@angular/material/dialog';
|
|
14
|
+
import { MAT_DIALOG_DATA, MatDialogModule } from '@angular/material/dialog';
|
|
15
|
+
import * as i1 from '@barcoding/frontend-core';
|
|
16
|
+
import { ModeState, isMode, ChangeStatePieceWork, PieceWorkCollect, PieceWorkState } from '@barcoding/frontend-core';
|
|
17
|
+
import * as i1$1 from '@barcoding/sdk';
|
|
18
|
+
import * as i5 from '@angular/flex-layout/flex';
|
|
19
|
+
import * as i6 from '@angular/material/button';
|
|
20
|
+
import { MatButtonModule } from '@angular/material/button';
|
|
21
|
+
import * as i7 from '@angular/material/checkbox';
|
|
22
|
+
import { MatCheckboxModule } from '@angular/material/checkbox';
|
|
23
|
+
import * as i8 from '@angular/forms';
|
|
24
|
+
import { FormsModule } from '@angular/forms';
|
|
25
|
+
import * as i14 from '@progress/kendo-angular-inputs';
|
|
26
|
+
import { InputsModule, SwitchModule } from '@progress/kendo-angular-inputs';
|
|
27
|
+
import { ModuleState } from '@barcoding/core';
|
|
28
|
+
import * as i4$1 from '@angular/common';
|
|
29
|
+
import { CommonModule } from '@angular/common';
|
|
30
|
+
import * as i6$1 from '@angular/flex-layout/extended';
|
|
31
|
+
import * as i7$1 from '@angular/cdk/table';
|
|
32
|
+
import { CdkTableModule } from '@angular/cdk/table';
|
|
33
|
+
import * as i11 from '@angular/material/paginator';
|
|
34
|
+
import { MatPaginatorModule } from '@angular/material/paginator';
|
|
35
|
+
import * as i12 from '@angular/material/icon';
|
|
36
|
+
import { MatIconModule } from '@angular/material/icon';
|
|
37
|
+
import * as i15 from '@angular/material/tooltip';
|
|
38
|
+
import { MatTooltipModule } from '@angular/material/tooltip';
|
|
39
|
+
import * as i16 from '@progress/kendo-angular-dropdowns';
|
|
40
|
+
import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
|
|
41
|
+
import { FlexLayoutModule } from '@angular/flex-layout';
|
|
42
|
+
|
|
43
|
+
class PieceWorkInForm {
|
|
44
|
+
constructor(focusService, pieceWorkLineApi, dialogRef, store, data) {
|
|
45
|
+
this.focusService = focusService;
|
|
46
|
+
this.pieceWorkLineApi = pieceWorkLineApi;
|
|
47
|
+
this.dialogRef = dialogRef;
|
|
48
|
+
this.store = store;
|
|
49
|
+
this.data = data;
|
|
50
|
+
this.finish = false;
|
|
51
|
+
this.qty_in = 0;
|
|
52
|
+
this.line = Object.assign({}, data.line);
|
|
53
|
+
this.qty_in = this.line.out - this.line.in;
|
|
54
|
+
}
|
|
55
|
+
ngOnInit() {
|
|
56
|
+
this.focusService.unFocus();
|
|
57
|
+
}
|
|
58
|
+
ngOnDestroy() {
|
|
59
|
+
this.focusService.setFocus();
|
|
60
|
+
}
|
|
61
|
+
cancel() {
|
|
62
|
+
this.dialogRef.close();
|
|
63
|
+
}
|
|
64
|
+
save(qty_in, finish) {
|
|
65
|
+
this.pieceWorkLineApi
|
|
66
|
+
.find({
|
|
67
|
+
filter: JSON.stringify({
|
|
68
|
+
where: { piecework_id: this.line.piecework_id },
|
|
69
|
+
}),
|
|
70
|
+
})
|
|
71
|
+
.subscribe(lines => {
|
|
72
|
+
let isFinished = false;
|
|
73
|
+
const totalLines = lines.length;
|
|
74
|
+
let totalFinishedLines = 0;
|
|
75
|
+
lines.forEach(line => {
|
|
76
|
+
if (line.piecework_line_status_id === 2) {
|
|
77
|
+
totalFinishedLines++;
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
if (qty_in === this.line.out) {
|
|
81
|
+
totalFinishedLines++;
|
|
82
|
+
}
|
|
83
|
+
if (totalFinishedLines === totalLines) {
|
|
84
|
+
isFinished = true;
|
|
85
|
+
}
|
|
86
|
+
this.dialogRef.close({
|
|
87
|
+
qty_in,
|
|
88
|
+
finish,
|
|
89
|
+
isFinished,
|
|
90
|
+
});
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PieceWorkInForm, deps: [{ token: i1.FocusService }, { token: i1$1.PieceWorkLineControllerService }, { token: i3.MatDialogRef }, { token: i4.Store }, { token: MAT_DIALOG_DATA }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
94
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PieceWorkInForm, selector: "piece-work-in-form", ngImport: i0, template: "<div fxLayout=\"column\" style=\"width: 100%\" fxLayoutAlign=\" none\">\n <h4>Piece Work</h4>\n <div fxLayout=\"row\" fxLayoutAlign=\"start center\">\n <div fxLayout=\"column\" fxLayoutAlign=\"space-between none\">\n <span class=\"h_t\">Assembly Name</span>\n <span class=\"v_t\">{{ line.part?.part_number }}</span>\n </div>\n\n <div class=\"spacer\"></div>\n\n <div fxLayout=\"column\" fxLayoutAlign=\"space-between none\">\n <span class=\"h_t\">Mode</span>\n <span class=\"v_t\">{{ line.mode?.controller }}</span>\n </div>\n\n <div class=\"spacer\"></div>\n\n <div fxLayout=\"column\" fxLayoutAlign=\"space-between none\">\n <span class=\"h_t\">Allocated Time</span>\n <span class=\"v_t\">--</span>\n </div>\n </div>\n <form class=\"k-form\" autocomplete=\"off\" #pieceWork=\"ngForm\">\n <div fxLayout=\"row\" fxLayoutAlign=\"start start\" fxLayoutGap=\"20px\">\n <kendo-floatinglabel fxFlex=\"80%\" text=\"Qty\">\n <kendo-numerictextbox\n [format]=\"'n0'\"\n style=\"width: 100%\"\n [min]=\"1\"\n required\n [(ngModel)]=\"qty_in\"\n [name]=\"'in'\"\n [max]=\"line.out\"\n type=\"number\"></kendo-numerictextbox>\n </kendo-floatinglabel>\n <mat-checkbox fxFlexAlign=\"center\" name=\"finish\" [(ngModel)]=\"finish\">\n Finish\n </mat-checkbox>\n </div>\n </form>\n</div>\n<div\n style=\"margin-top: 25px\"\n fxLayoutGap=\"10px\"\n fxLayout=\"row\"\n fxLayoutAlign=\"end none\">\n <button (click)=\"cancel()\" mat-raised-button class=\"t_btn cancel\">\n Cancel\n </button>\n <button\n (click)=\"save(qty_in, finish)\"\n [disabled]=\"!pieceWork.valid\"\n mat-raised-button\n class=\"t_btn success\">\n Save\n </button>\n</div>\n", styles: ["kendo-textbox-container{width:100%}.h_t{font: 10px/40px IBM Plex Sans;letter-spacing:0px;color:#666;opacity:1}.v_t{font: 18px/40px IBM Plex Sans;letter-spacing:0px;color:#666;opacity:1}.spacer{display:flex;flex-grow:1}\n"], dependencies: [{ kind: "directive", type: i5.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i5.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { kind: "directive", type: i5.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i5.DefaultFlexAlignDirective, selector: " [fxFlexAlign], [fxFlexAlign.xs], [fxFlexAlign.sm], [fxFlexAlign.md], [fxFlexAlign.lg], [fxFlexAlign.xl], [fxFlexAlign.lt-sm], [fxFlexAlign.lt-md], [fxFlexAlign.lt-lg], [fxFlexAlign.lt-xl], [fxFlexAlign.gt-xs], [fxFlexAlign.gt-sm], [fxFlexAlign.gt-md], [fxFlexAlign.gt-lg]", inputs: ["fxFlexAlign", "fxFlexAlign.xs", "fxFlexAlign.sm", "fxFlexAlign.md", "fxFlexAlign.lg", "fxFlexAlign.xl", "fxFlexAlign.lt-sm", "fxFlexAlign.lt-md", "fxFlexAlign.lt-lg", "fxFlexAlign.lt-xl", "fxFlexAlign.gt-xs", "fxFlexAlign.gt-sm", "fxFlexAlign.gt-md", "fxFlexAlign.gt-lg"] }, { kind: "directive", type: i5.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "component", type: i6.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i7.MatCheckbox, selector: "mat-checkbox", inputs: ["disableRipple", "color", "tabIndex"], exportAs: ["matCheckbox"] }, { kind: "directive", type: i8.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i8.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i8.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i8.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i8.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i8.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: i14.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }] }); }
|
|
95
|
+
}
|
|
96
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PieceWorkInForm, decorators: [{
|
|
97
|
+
type: Component,
|
|
98
|
+
args: [{ selector: 'piece-work-in-form', template: "<div fxLayout=\"column\" style=\"width: 100%\" fxLayoutAlign=\" none\">\n <h4>Piece Work</h4>\n <div fxLayout=\"row\" fxLayoutAlign=\"start center\">\n <div fxLayout=\"column\" fxLayoutAlign=\"space-between none\">\n <span class=\"h_t\">Assembly Name</span>\n <span class=\"v_t\">{{ line.part?.part_number }}</span>\n </div>\n\n <div class=\"spacer\"></div>\n\n <div fxLayout=\"column\" fxLayoutAlign=\"space-between none\">\n <span class=\"h_t\">Mode</span>\n <span class=\"v_t\">{{ line.mode?.controller }}</span>\n </div>\n\n <div class=\"spacer\"></div>\n\n <div fxLayout=\"column\" fxLayoutAlign=\"space-between none\">\n <span class=\"h_t\">Allocated Time</span>\n <span class=\"v_t\">--</span>\n </div>\n </div>\n <form class=\"k-form\" autocomplete=\"off\" #pieceWork=\"ngForm\">\n <div fxLayout=\"row\" fxLayoutAlign=\"start start\" fxLayoutGap=\"20px\">\n <kendo-floatinglabel fxFlex=\"80%\" text=\"Qty\">\n <kendo-numerictextbox\n [format]=\"'n0'\"\n style=\"width: 100%\"\n [min]=\"1\"\n required\n [(ngModel)]=\"qty_in\"\n [name]=\"'in'\"\n [max]=\"line.out\"\n type=\"number\"></kendo-numerictextbox>\n </kendo-floatinglabel>\n <mat-checkbox fxFlexAlign=\"center\" name=\"finish\" [(ngModel)]=\"finish\">\n Finish\n </mat-checkbox>\n </div>\n </form>\n</div>\n<div\n style=\"margin-top: 25px\"\n fxLayoutGap=\"10px\"\n fxLayout=\"row\"\n fxLayoutAlign=\"end none\">\n <button (click)=\"cancel()\" mat-raised-button class=\"t_btn cancel\">\n Cancel\n </button>\n <button\n (click)=\"save(qty_in, finish)\"\n [disabled]=\"!pieceWork.valid\"\n mat-raised-button\n class=\"t_btn success\">\n Save\n </button>\n</div>\n", styles: ["kendo-textbox-container{width:100%}.h_t{font: 10px/40px IBM Plex Sans;letter-spacing:0px;color:#666;opacity:1}.v_t{font: 18px/40px IBM Plex Sans;letter-spacing:0px;color:#666;opacity:1}.spacer{display:flex;flex-grow:1}\n"] }]
|
|
99
|
+
}], ctorParameters: function () { return [{ type: i1.FocusService }, { type: i1$1.PieceWorkLineControllerService }, { type: i3.MatDialogRef }, { type: i4.Store }, { type: undefined, decorators: [{
|
|
100
|
+
type: Inject,
|
|
101
|
+
args: [MAT_DIALOG_DATA]
|
|
102
|
+
}] }]; } });
|
|
103
|
+
|
|
104
|
+
class PieceworkInConfigModal {
|
|
105
|
+
constructor(dialogRef, data) {
|
|
106
|
+
this.dialogRef = dialogRef;
|
|
107
|
+
this.data = data;
|
|
108
|
+
this.config = {};
|
|
109
|
+
this.config = Object.assign({}, data.currentConfig);
|
|
110
|
+
}
|
|
111
|
+
ngOnInit() { }
|
|
112
|
+
save(config) {
|
|
113
|
+
this.dialogRef.close(config);
|
|
114
|
+
}
|
|
115
|
+
onNoClick() {
|
|
116
|
+
this.dialogRef.close();
|
|
117
|
+
}
|
|
118
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PieceworkInConfigModal, deps: [{ token: i3.MatDialogRef }, { token: MAT_DIALOG_DATA }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
119
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PieceworkInConfigModal, selector: "assignmentFormDialog", ngImport: i0, template: "<form class=\"k-form\" autocomplete=\"off\" #configForm=\"ngForm\">\n <div fxLayout=\"column\" fxLayoutAlign=\"space-between none\">\n <div fxLayout=\"column\" fxLayoutAlign=\" stretch\">\n <fieldset>\n <legend>Main</legend>\n <label fxFlex class=\"k-form-field\">\n <span>Current User</span>\n <kendo-switch\n name=\"current_user\"\n [(ngModel)]=\"config.current_user\"\n [onLabel]=\"'Yes'\"\n [offLabel]=\"'No'\"></kendo-switch>\n </label>\n <label fxFlex class=\"k-form-field\">\n <span>Simple Version</span>\n <kendo-switch\n name=\"simple_version\"\n [(ngModel)]=\"config.simple_version\"\n [onLabel]=\"'Yes'\"\n [offLabel]=\"'No'\"></kendo-switch>\n </label>\n </fieldset>\n </div>\n\n <div\n fxLayoutGap=\"20px\"\n style=\"margin-top: 10px\"\n fxLayout=\"row\"\n fxLayoutAlign=\"space-around end\">\n <button\n fxFlex\n (click)=\"onNoClick()\"\n mat-raised-button\n class=\"t_btn cancel\">\n Cancel\n </button>\n <button\n fxFlex\n [disabled]=\"!configForm.form.valid\"\n (click)=\"save(config)\"\n class=\"t_btn success\"\n mat-raised-button>\n Save\n </button>\n </div>\n </div>\n</form>\n", styles: [".mat-mdc-tab-body-wrapper{flex-grow:1}.mat-mdc-tab-body{display:flex!important;flex-direction:column}.mat-mdc-tab-body-content{display:flex;flex-direction:column;flex-grow:1}mat-form-field{margin-top:20px}\n"], dependencies: [{ kind: "directive", type: i5.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i5.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { kind: "directive", type: i5.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i5.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "component", type: i6.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i8.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i8.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i8.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i8.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i8.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: i14.SwitchComponent, selector: "kendo-switch", inputs: ["focusableId", "onLabel", "offLabel", "checked", "disabled", "readonly", "tabindex", "size", "thumbRounded", "trackRounded", "tabIndex"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoSwitch"] }] }); }
|
|
120
|
+
}
|
|
121
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PieceworkInConfigModal, decorators: [{
|
|
122
|
+
type: Component,
|
|
123
|
+
args: [{ selector: 'assignmentFormDialog', template: "<form class=\"k-form\" autocomplete=\"off\" #configForm=\"ngForm\">\n <div fxLayout=\"column\" fxLayoutAlign=\"space-between none\">\n <div fxLayout=\"column\" fxLayoutAlign=\" stretch\">\n <fieldset>\n <legend>Main</legend>\n <label fxFlex class=\"k-form-field\">\n <span>Current User</span>\n <kendo-switch\n name=\"current_user\"\n [(ngModel)]=\"config.current_user\"\n [onLabel]=\"'Yes'\"\n [offLabel]=\"'No'\"></kendo-switch>\n </label>\n <label fxFlex class=\"k-form-field\">\n <span>Simple Version</span>\n <kendo-switch\n name=\"simple_version\"\n [(ngModel)]=\"config.simple_version\"\n [onLabel]=\"'Yes'\"\n [offLabel]=\"'No'\"></kendo-switch>\n </label>\n </fieldset>\n </div>\n\n <div\n fxLayoutGap=\"20px\"\n style=\"margin-top: 10px\"\n fxLayout=\"row\"\n fxLayoutAlign=\"space-around end\">\n <button\n fxFlex\n (click)=\"onNoClick()\"\n mat-raised-button\n class=\"t_btn cancel\">\n Cancel\n </button>\n <button\n fxFlex\n [disabled]=\"!configForm.form.valid\"\n (click)=\"save(config)\"\n class=\"t_btn success\"\n mat-raised-button>\n Save\n </button>\n </div>\n </div>\n</form>\n", styles: [".mat-mdc-tab-body-wrapper{flex-grow:1}.mat-mdc-tab-body{display:flex!important;flex-direction:column}.mat-mdc-tab-body-content{display:flex;flex-direction:column;flex-grow:1}mat-form-field{margin-top:20px}\n"] }]
|
|
124
|
+
}], ctorParameters: function () { return [{ type: i3.MatDialogRef }, { type: undefined, decorators: [{
|
|
125
|
+
type: Inject,
|
|
126
|
+
args: [MAT_DIALOG_DATA]
|
|
127
|
+
}] }]; } });
|
|
128
|
+
|
|
129
|
+
class WidgetPieceworkInComponent extends ConfigInterfaceDashboard {
|
|
130
|
+
constructor(modeApi, userApi, store, cdr, dialog, statusesApi, pieceWorkLineApi) {
|
|
131
|
+
super(dialog, PieceworkInConfigModal, store, '60%');
|
|
132
|
+
this.modeApi = modeApi;
|
|
133
|
+
this.userApi = userApi;
|
|
134
|
+
this.store = store;
|
|
135
|
+
this.cdr = cdr;
|
|
136
|
+
this.dialog = dialog;
|
|
137
|
+
this.statusesApi = statusesApi;
|
|
138
|
+
this.pieceWorkLineApi = pieceWorkLineApi;
|
|
139
|
+
this.configChanged$ = new Subject();
|
|
140
|
+
this.isAdmin = false;
|
|
141
|
+
this.filters = {
|
|
142
|
+
logic: 'and',
|
|
143
|
+
filters: [
|
|
144
|
+
{
|
|
145
|
+
field: 'piecework_line_status_id',
|
|
146
|
+
value: 1,
|
|
147
|
+
},
|
|
148
|
+
],
|
|
149
|
+
};
|
|
150
|
+
this.displayedColumnsOrg = [
|
|
151
|
+
'pw_line',
|
|
152
|
+
'employee',
|
|
153
|
+
'document',
|
|
154
|
+
'assembly',
|
|
155
|
+
'mode',
|
|
156
|
+
'unit_price',
|
|
157
|
+
'percentage',
|
|
158
|
+
'qty',
|
|
159
|
+
'in',
|
|
160
|
+
'finish',
|
|
161
|
+
'total',
|
|
162
|
+
'status',
|
|
163
|
+
];
|
|
164
|
+
this.displayedColumns = [
|
|
165
|
+
'pw_line',
|
|
166
|
+
'employee',
|
|
167
|
+
'document',
|
|
168
|
+
'assembly',
|
|
169
|
+
'mode',
|
|
170
|
+
'unit_price',
|
|
171
|
+
'percentage',
|
|
172
|
+
'qty',
|
|
173
|
+
'in',
|
|
174
|
+
'finish',
|
|
175
|
+
'total',
|
|
176
|
+
'status',
|
|
177
|
+
]; // column display value
|
|
178
|
+
this.displayedColumnsSimple = [
|
|
179
|
+
'employee',
|
|
180
|
+
'document',
|
|
181
|
+
'assembly',
|
|
182
|
+
'finish',
|
|
183
|
+
'total',
|
|
184
|
+
]; // column display value
|
|
185
|
+
this.employee = null;
|
|
186
|
+
this.status = 1;
|
|
187
|
+
this.barcodes = [];
|
|
188
|
+
this.users = [];
|
|
189
|
+
this.statuses = [];
|
|
190
|
+
this.modes = [];
|
|
191
|
+
this.defaultItemMode = { id: null, controller: 'Show all...' };
|
|
192
|
+
this.defaultItemStatus = { id: null, name: 'Show all...' };
|
|
193
|
+
}
|
|
194
|
+
getValue(field, isMultiLine = false) {
|
|
195
|
+
if (!this.filters) {
|
|
196
|
+
return null;
|
|
197
|
+
}
|
|
198
|
+
if (!this.filters.filters) {
|
|
199
|
+
return null;
|
|
200
|
+
}
|
|
201
|
+
const data = this.filters.filters.find((value) => value.field === field);
|
|
202
|
+
if (isMultiLine) {
|
|
203
|
+
if (data && data.value && data.value.length) {
|
|
204
|
+
return data.value.join('\n');
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
return data ? data.value : '';
|
|
208
|
+
}
|
|
209
|
+
ngOnInit() {
|
|
210
|
+
this.modeApi
|
|
211
|
+
.find({ filter: JSON.stringify({ where: { is_piecework: true } }) })
|
|
212
|
+
.subscribe(_ => {
|
|
213
|
+
this.modes = _;
|
|
214
|
+
});
|
|
215
|
+
this.statusesApi.find().subscribe(_ => {
|
|
216
|
+
this.statuses = _;
|
|
217
|
+
});
|
|
218
|
+
const currentUser = this.store.selectSnapshot(AuthState.user);
|
|
219
|
+
// example of default filter on start
|
|
220
|
+
// this.filters.filters.push({
|
|
221
|
+
// operator: 'eq',
|
|
222
|
+
// field: 'piecework_id',
|
|
223
|
+
// value: 200,
|
|
224
|
+
// });
|
|
225
|
+
// this.store.dispatch(
|
|
226
|
+
// new ChangeStatePieceWork({
|
|
227
|
+
// skip: 0,
|
|
228
|
+
// sort: [{ field: 'id', dir: 'desc' }],
|
|
229
|
+
// take: 10,
|
|
230
|
+
// filter: this.filters,
|
|
231
|
+
// })
|
|
232
|
+
// );
|
|
233
|
+
this.stateSubscription = this.state$.subscribe(_ => {
|
|
234
|
+
if (_.filter) {
|
|
235
|
+
this.filters = _.filter;
|
|
236
|
+
}
|
|
237
|
+
});
|
|
238
|
+
const mode = this.store.selectSnapshot(ModeState.mode);
|
|
239
|
+
const currentModule = this.store.selectSnapshot(ModuleState.module);
|
|
240
|
+
if (currentModule) {
|
|
241
|
+
const isAdmin = currentUser.groups.find(value => value.module_group_id === currentModule.admin_group_id);
|
|
242
|
+
if (isAdmin) {
|
|
243
|
+
this.isAdmin = true;
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
if (mode && isMode(mode)) {
|
|
247
|
+
const isAdminMode = currentUser.groups.find(value => value.module_group_id === mode.admin_group_id);
|
|
248
|
+
const isModeratorMode = currentUser.groups.find(value => value.module_group_id === mode.moderator_group_id);
|
|
249
|
+
console.log(isAdminMode, isModeratorMode);
|
|
250
|
+
if (isModeratorMode || isAdminMode) {
|
|
251
|
+
this.isAdmin = true;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
const currentUserConfig = this.item.config && this.item.config.current_user ? true : false;
|
|
255
|
+
if (currentUserConfig) {
|
|
256
|
+
this.isAdmin = false;
|
|
257
|
+
}
|
|
258
|
+
console.log(`isAdmin: ${this.isAdmin}`);
|
|
259
|
+
if (!this.isAdmin) {
|
|
260
|
+
const currentUser = this.store.selectSnapshot(AuthState.user);
|
|
261
|
+
this.users.push(currentUser);
|
|
262
|
+
let filters = {};
|
|
263
|
+
if (this.item.config.simple_version) {
|
|
264
|
+
this.displayedColumns = this.displayedColumnsSimple.slice();
|
|
265
|
+
filters = {
|
|
266
|
+
logic: 'and',
|
|
267
|
+
filters: [
|
|
268
|
+
{
|
|
269
|
+
field: 'user_id',
|
|
270
|
+
value: currentUser.id,
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
field: 'piecework_line_status_id',
|
|
274
|
+
value: 2,
|
|
275
|
+
},
|
|
276
|
+
],
|
|
277
|
+
};
|
|
278
|
+
}
|
|
279
|
+
else {
|
|
280
|
+
filters = {
|
|
281
|
+
logic: 'and',
|
|
282
|
+
filters: [
|
|
283
|
+
{
|
|
284
|
+
field: 'piecework_line_status_id',
|
|
285
|
+
value: 1,
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
field: 'user_id',
|
|
289
|
+
value: currentUser.id,
|
|
290
|
+
},
|
|
291
|
+
],
|
|
292
|
+
};
|
|
293
|
+
}
|
|
294
|
+
this.store.dispatch(new ChangeStatePieceWork({
|
|
295
|
+
skip: 0,
|
|
296
|
+
sort: [{ field: 'id', dir: 'desc' }],
|
|
297
|
+
take: 20,
|
|
298
|
+
filter: filters,
|
|
299
|
+
}));
|
|
300
|
+
}
|
|
301
|
+
if (this.isAdmin) {
|
|
302
|
+
this.displayedColumns = [
|
|
303
|
+
'pw_line',
|
|
304
|
+
'employee',
|
|
305
|
+
'document',
|
|
306
|
+
'mode',
|
|
307
|
+
'percentage',
|
|
308
|
+
'qty',
|
|
309
|
+
'finish',
|
|
310
|
+
'total',
|
|
311
|
+
'status',
|
|
312
|
+
'actions',
|
|
313
|
+
]; // column display value
|
|
314
|
+
}
|
|
315
|
+
/**
|
|
316
|
+
* example set filter outside
|
|
317
|
+
*/
|
|
318
|
+
// setTimeout(() => {
|
|
319
|
+
// const filters: CompositeFilterDescriptor = {
|
|
320
|
+
// logic: 'and',
|
|
321
|
+
// filters: [
|
|
322
|
+
// {
|
|
323
|
+
// operator: 'eq',
|
|
324
|
+
// field: 'piecework_id',
|
|
325
|
+
// value: 202,
|
|
326
|
+
// },
|
|
327
|
+
// ],
|
|
328
|
+
// };
|
|
329
|
+
// this.store.dispatch(
|
|
330
|
+
// new ChangeStatePieceWork({
|
|
331
|
+
// skip: 0,
|
|
332
|
+
// sort: [{ field: 'id', dir: 'desc' }],
|
|
333
|
+
// take: 10,
|
|
334
|
+
// filter: filters,
|
|
335
|
+
// })
|
|
336
|
+
// );
|
|
337
|
+
// }, 8000);
|
|
338
|
+
this.pieceworkSubscription = this.pieceworks$.subscribe(_ => {
|
|
339
|
+
const data = _.map(value => {
|
|
340
|
+
return {
|
|
341
|
+
...value,
|
|
342
|
+
formIn: value.out - value.in,
|
|
343
|
+
};
|
|
344
|
+
});
|
|
345
|
+
this.dataSource = new MatTableDataSource(data);
|
|
346
|
+
});
|
|
347
|
+
}
|
|
348
|
+
getMax(row) {
|
|
349
|
+
return row.out - row.in;
|
|
350
|
+
}
|
|
351
|
+
registerIn(row, qty_in, finish) {
|
|
352
|
+
console.log(row, qty_in);
|
|
353
|
+
this.pieceWorkLineApi
|
|
354
|
+
.find({
|
|
355
|
+
filter: JSON.stringify({
|
|
356
|
+
where: { piecework_id: row.piecework_id },
|
|
357
|
+
}),
|
|
358
|
+
})
|
|
359
|
+
.subscribe(lines => {
|
|
360
|
+
let isFinished = false;
|
|
361
|
+
const totalLines = lines.length;
|
|
362
|
+
let totalFinishedLines = 0;
|
|
363
|
+
lines.forEach(line => {
|
|
364
|
+
if (line.piecework_line_status_id === 2) {
|
|
365
|
+
totalFinishedLines++;
|
|
366
|
+
}
|
|
367
|
+
});
|
|
368
|
+
if (qty_in === row.out) {
|
|
369
|
+
totalFinishedLines++;
|
|
370
|
+
}
|
|
371
|
+
if (totalFinishedLines === totalLines) {
|
|
372
|
+
isFinished = true;
|
|
373
|
+
}
|
|
374
|
+
const user_id = this.store.selectSnapshot(AuthState.user).id;
|
|
375
|
+
const finishObject = finish ? qty_in : 0;
|
|
376
|
+
this.store.dispatch(new PieceWorkCollect(row.piecework_id, qty_in, row.id, user_id, finishObject, isFinished));
|
|
377
|
+
});
|
|
378
|
+
}
|
|
379
|
+
buildBarcodeList(value) {
|
|
380
|
+
this.barcodes = value
|
|
381
|
+
.split('\n')
|
|
382
|
+
.filter(value => value != null && value.length > 0)
|
|
383
|
+
.map(value => value.trim());
|
|
384
|
+
console.log(this.barcodes);
|
|
385
|
+
}
|
|
386
|
+
valueChange(field, event) {
|
|
387
|
+
console.log(`valueChange: ${field}, ${event}`);
|
|
388
|
+
if (!this.filters.filters) {
|
|
389
|
+
this.filters.filters = [];
|
|
390
|
+
}
|
|
391
|
+
const filterExists = this.filters.filters.findIndex((value) => value.field === field);
|
|
392
|
+
if (filterExists >= 0) {
|
|
393
|
+
this.filters.filters[filterExists].value = event;
|
|
394
|
+
}
|
|
395
|
+
else {
|
|
396
|
+
this.filters.filters.push({
|
|
397
|
+
operator: 'eq',
|
|
398
|
+
field,
|
|
399
|
+
value: event,
|
|
400
|
+
});
|
|
401
|
+
}
|
|
402
|
+
this.store.dispatch(new ChangeStatePieceWork({
|
|
403
|
+
skip: 0,
|
|
404
|
+
sort: [{ field: 'id', dir: 'desc' }],
|
|
405
|
+
take: 10,
|
|
406
|
+
filter: this.filters,
|
|
407
|
+
}));
|
|
408
|
+
}
|
|
409
|
+
filterChange(event) {
|
|
410
|
+
if (event) {
|
|
411
|
+
this.userApi
|
|
412
|
+
.find({
|
|
413
|
+
filter: JSON.stringify({
|
|
414
|
+
limit: 5,
|
|
415
|
+
where: { full_name: { like: `%${event}%` } },
|
|
416
|
+
}),
|
|
417
|
+
})
|
|
418
|
+
.subscribe(_ => {
|
|
419
|
+
this.users = _;
|
|
420
|
+
});
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
ngOnDestroy() {
|
|
424
|
+
if (this.pieceworkSubscription) {
|
|
425
|
+
this.pieceworkSubscription.unsubscribe();
|
|
426
|
+
}
|
|
427
|
+
if (this.myConfigSubscription) {
|
|
428
|
+
this.myConfigSubscription.unsubscribe();
|
|
429
|
+
}
|
|
430
|
+
if (this.objectSubscription) {
|
|
431
|
+
this.objectSubscription.unsubscribe();
|
|
432
|
+
}
|
|
433
|
+
if (this.stateSubscription) {
|
|
434
|
+
this.stateSubscription.unsubscribe();
|
|
435
|
+
}
|
|
436
|
+
this.store.dispatch(new ResetStorePieceWork());
|
|
437
|
+
super.destroy();
|
|
438
|
+
}
|
|
439
|
+
openInForm(row) {
|
|
440
|
+
const dialogRef = this.dialog.open(PieceWorkInForm, {
|
|
441
|
+
width: '40%',
|
|
442
|
+
data: { line: row },
|
|
443
|
+
});
|
|
444
|
+
dialogRef.afterClosed().subscribe(data => {
|
|
445
|
+
if (data) {
|
|
446
|
+
const user_id = this.store.selectSnapshot(AuthState.user).id;
|
|
447
|
+
const finish = data.finish ? data.qty_in : 0;
|
|
448
|
+
this.store.dispatch(new PieceWorkCollect(row.piecework_id, data.qty_in, row.id, user_id, finish, data.isFinished));
|
|
449
|
+
}
|
|
450
|
+
});
|
|
451
|
+
}
|
|
452
|
+
changePage(event) {
|
|
453
|
+
const take = event.pageSize;
|
|
454
|
+
const skip = event.pageIndex > 0 ? event.pageIndex * event.pageSize : 0;
|
|
455
|
+
this.store.dispatch(new ChangeStatePieceWork({
|
|
456
|
+
skip,
|
|
457
|
+
sort: [{ field: 'id', dir: 'desc' }],
|
|
458
|
+
take,
|
|
459
|
+
filter: this.filters,
|
|
460
|
+
}));
|
|
461
|
+
}
|
|
462
|
+
formatCurrency(value, currency) {
|
|
463
|
+
const region = currency.region;
|
|
464
|
+
const symbol = currency.symbol;
|
|
465
|
+
return value
|
|
466
|
+
? value.toLocaleString(region, { style: 'currency', currency: symbol })
|
|
467
|
+
: 0;
|
|
468
|
+
}
|
|
469
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: WidgetPieceworkInComponent, deps: [{ token: i1$1.ModeControllerService }, { token: i1$1.UserControllerService }, { token: i4.Store }, { token: i0.ChangeDetectorRef }, { token: i3.MatDialog }, { token: i1$1.PieceWorkLineStatusControllerControllerService }, { token: i1$1.PieceWorkLineControllerService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
470
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: WidgetPieceworkInComponent, selector: "widget-piece-work-in", usesInheritance: true, ngImport: i0, template: "<div fxLayout=\"column\" fxLayoutGap=\"20px\">\n <label *ngIf=\"!item.config?.simple_version\" fxFlex class=\"k-form-field\">\n <form class=\"k-form\" id=\"piecework_in_form\">\n <div fxLayout=\"row\" fxLayoutGap=\"8px\" fxLayoutAlign=\"start center\">\n <label fxFlex class=\"k-form-field\">\n <span>Barcode</span>\n <kendo-textarea\n placeholder=\"Scan barcodes here\"\n [resizable]=\"'vertical'\"\n [rows]=\"3\"\n [value]=\"getValue('barcodes', true)\"\n (valueChange)=\"buildBarcodeList($event)\"\n flow=\"vertical\">\n </kendo-textarea>\n </label>\n <button\n fxFlex=\"50px\"\n (click)=\"valueChange('barcodes', barcodes)\"\n matTooltip=\"Filter\"\n [matTooltipPosition]=\"'above'\"\n mat-icon-button\n color=\"primary\"\n aria-label=\"Example icon button with a heart icon\">\n <mat-icon>refresh</mat-icon>\n </button>\n </div>\n <div fxLayout=\"row\" fxLayoutGap=\"8px\" fxLayoutAlign=\"start center\">\n <label fxFlex=\"25%\" class=\"k-form-field\">\n <span>PW ID</span>\n <input\n style=\"width: 100%\"\n kendoTextBox\n [value]=\"getValue('piecework_id')\"\n (input)=\"valueChange('piecework_id', $event.target.value)\"\n name=\"piecework_id\"\n type=\"text\" />\n </label>\n\n <!-- <label fxFlex=\"20%\" class=\"k-form-field\">\n <span>Barcode</span>\n <kendo-textarea\n [style.marginBottom.px]=\"10\"\n placeholder=\"Event name\"\n resizable=\"auto\"\n flow=\"horizontal\"\n >\n </kendo-textarea>\n\n <!-- <input\n style=\"width: 100%\"\n kendoTextBox\n [value]=\"getValue('barcode')\"\n (input)=\"valueChange('barcode', $event.target.value)\"\n name=\"barcode\"\n type=\"text\"\n /> -->\n\n <label fxFlex=\"25%\" class=\"k-form-field\">\n <span>Employee</span>\n <kendo-combobox\n style=\"width: 100%\"\n name=\"user_id\"\n [value]=\"getValue('user_id')\"\n [filterable]=\"true\"\n (filterChange)=\"filterChange($event)\"\n (valueChange)=\"valueChange('user_id', $event)\"\n [data]=\"users\"\n [textField]=\"'full_name'\"\n [disabled]=\"!isAdmin\"\n [valueField]=\"'id'\"\n [valuePrimitive]=\"true\">\n </kendo-combobox>\n </label>\n\n <label fxFlex=\"25%\" class=\"k-form-field\">\n <span>Mode</span>\n <kendo-dropdownlist\n [defaultItem]=\"defaultItemMode\"\n [data]=\"modes\"\n [value]=\"getValue('mode_id')\"\n [valuePrimitive]=\"true\"\n (valueChange)=\"valueChange('mode_id', $event)\"\n [textField]=\"'controller'\"\n [valueField]=\"'id'\"\n name=\"true\">\n </kendo-dropdownlist>\n </label>\n\n <label fxFlex=\"25%\" class=\"k-form-field\">\n <span>Status</span>\n <kendo-dropdownlist\n [defaultItem]=\"defaultItemStatus\"\n [data]=\"statuses\"\n [value]=\"getValue('piecework_line_status_id')\"\n [valuePrimitive]=\"true\"\n (valueChange)=\"valueChange('piecework_line_status_id', $event)\"\n [textField]=\"'name'\"\n [valueField]=\"'id'\"\n name=\"true\">\n </kendo-dropdownlist>\n </label>\n </div>\n </form>\n </label>\n\n <mat-table #table [dataSource]=\"dataSource\">\n <ng-container cdkColumnDef=\"pw_line\">\n <mat-header-cell *cdkHeaderCellDef>PW</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ row.piecework?.id }}/{{ row.piecework_order_line }}</span>\n </mat-cell>\n </ng-container>\n <ng-container cdkColumnDef=\"employee\">\n <mat-header-cell *cdkHeaderCellDef>Employee</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ row?.piecework?.prepared_for?.full_name }}</span>\n </mat-cell>\n </ng-container>\n <ng-container cdkColumnDef=\"document\">\n <mat-header-cell *cdkHeaderCellDef>Document</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ row.document?.barcode }}</span>\n </mat-cell>\n </ng-container>\n <ng-container cdkColumnDef=\"assembly\">\n <mat-header-cell *cdkHeaderCellDef>Assembly</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ row.part?.part_number }}</span>\n </mat-cell>\n </ng-container>\n <!-- <ng-container cdkColumnDef=\"qty_max\">\n <mat-header-cell *cdkHeaderCellDef>Qty</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ getMaxQtyLeftForRow(row)}}</span>\n </mat-cell>\n </ng-container> -->\n <ng-container cdkColumnDef=\"mode\">\n <mat-header-cell *cdkHeaderCellDef>Mode</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ row.mode?.controller }}</span>\n </mat-cell>\n </ng-container>\n <ng-container cdkColumnDef=\"unit_price\">\n <mat-header-cell *cdkHeaderCellDef>Unit Price</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n {{ formatCurrency(row.unit_price, row.currency) }}\n </mat-cell>\n </ng-container>\n <ng-container cdkColumnDef=\"percentage\">\n <mat-header-cell *cdkHeaderCellDef>Job %</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n {{ row.work_percentage | percent }}\n </mat-cell>\n </ng-container>\n\n <ng-container cdkColumnDef=\"qty\">\n <mat-header-cell *cdkHeaderCellDef>Out / In</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n {{ row.out }} / {{ !row.in ? 0 : row.in }}\n </mat-cell>\n </ng-container>\n\n <ng-container cdkColumnDef=\"in\">\n <mat-header-cell *cdkHeaderCellDef>Qty In</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n {{ !row.in ? 0 : row.in }}\n </mat-cell>\n </ng-container>\n\n <ng-container cdkColumnDef=\"finish\">\n <mat-header-cell *cdkHeaderCellDef>Qty Finish</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n {{ row.finish }}\n </mat-cell>\n </ng-container>\n\n <ng-container cdkColumnDef=\"status\">\n <mat-header-cell *cdkHeaderCellDef>Status</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n {{ row.line_status?.name }}\n </mat-cell>\n </ng-container>\n\n <ng-container cdkColumnDef=\"total\">\n <mat-header-cell *cdkHeaderCellDef>Total</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ formatCurrency(row.value, row.currency) }}</span>\n </mat-cell>\n </ng-container>\n\n <ng-container cdkColumnDef=\"actions\">\n <mat-header-cell [ngClass]=\"'pieceworkActionColumn'\" *cdkHeaderCellDef\n >Actions</mat-header-cell\n >\n <mat-cell [ngClass]=\"'pieceworkActionColumn'\" *cdkCellDef=\"let row\">\n <ng-container *ngIf=\"row.piecework_line_status_id == 1\">\n <div fxLayout=\"row\" fxLayoutGap=\"8px\" fxLayoutAlign=\"start center\">\n <kendo-numerictextbox\n [format]=\"'n0'\"\n style=\"width: 100%\"\n [min]=\"1\"\n [(ngModel)]=\"row.formIn\"\n [name]=\"'in_' + row.id\"\n [max]=\"getMax(row)\"\n type=\"number\"></kendo-numerictextbox>\n <mat-checkbox\n matTooltip=\"Finish\"\n [matTooltipPosition]=\"'above'\"\n fxFlexAlign=\"center\"\n [name]=\"'finish_' + row.id\"\n [(ngModel)]=\"row.formFinish\">\n </mat-checkbox>\n <button\n [disabled]=\"row.in == row.out || row.formIn > row.out - row.in\"\n matTooltip=\"Save\"\n (click)=\"registerIn(row, row.formIn, row.formFinish)\"\n [matTooltipPosition]=\"'above'\"\n mat-icon-button\n color=\"warn\"\n aria-label=\"Example icon button with a heart icon\">\n <mat-icon>save</mat-icon>\n </button>\n </div>\n </ng-container>\n <ng-container *ngIf=\"row.piecework_line_status_id == 2\">\n <span>Line finished</span>\n </ng-container>\n </mat-cell>\n </ng-container>\n\n <mat-header-row *cdkHeaderRowDef=\"displayedColumns\"></mat-header-row>\n <mat-row *cdkRowDef=\"let row; columns: displayedColumns\"></mat-row>\n </mat-table>\n <mat-paginator\n #paginator\n [length]=\"total$ | async\"\n [pageIndex]=\"0\"\n (page)=\"changePage($event)\"\n [pageSize]=\"10\"\n [pageSizeOptions]=\"[5, 10, 25, 100]\">\n </mat-paginator>\n</div>\n", styles: [":host{padding:10px;display:flex;flex-direction:column}.spacer{flex-grow:1}.pieceworkActionColumn{flex:0 0 350px;padding-left:0!important}\n"], dependencies: [{ kind: "directive", type: i4$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "directive", type: i5.DefaultLayoutGapDirective, selector: " [fxLayoutGap], [fxLayoutGap.xs], [fxLayoutGap.sm], [fxLayoutGap.md], [fxLayoutGap.lg], [fxLayoutGap.xl], [fxLayoutGap.lt-sm], [fxLayoutGap.lt-md], [fxLayoutGap.lt-lg], [fxLayoutGap.lt-xl], [fxLayoutGap.gt-xs], [fxLayoutGap.gt-sm], [fxLayoutGap.gt-md], [fxLayoutGap.gt-lg]", inputs: ["fxLayoutGap", "fxLayoutGap.xs", "fxLayoutGap.sm", "fxLayoutGap.md", "fxLayoutGap.lg", "fxLayoutGap.xl", "fxLayoutGap.lt-sm", "fxLayoutGap.lt-md", "fxLayoutGap.lt-lg", "fxLayoutGap.lt-xl", "fxLayoutGap.gt-xs", "fxLayoutGap.gt-sm", "fxLayoutGap.gt-md", "fxLayoutGap.gt-lg"] }, { kind: "directive", type: i5.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }, { kind: "directive", type: i5.DefaultFlexAlignDirective, selector: " [fxFlexAlign], [fxFlexAlign.xs], [fxFlexAlign.sm], [fxFlexAlign.md], [fxFlexAlign.lg], [fxFlexAlign.xl], [fxFlexAlign.lt-sm], [fxFlexAlign.lt-md], [fxFlexAlign.lt-lg], [fxFlexAlign.lt-xl], [fxFlexAlign.gt-xs], [fxFlexAlign.gt-sm], [fxFlexAlign.gt-md], [fxFlexAlign.gt-lg]", inputs: ["fxFlexAlign", "fxFlexAlign.xs", "fxFlexAlign.sm", "fxFlexAlign.md", "fxFlexAlign.lg", "fxFlexAlign.xl", "fxFlexAlign.lt-sm", "fxFlexAlign.lt-md", "fxFlexAlign.lt-lg", "fxFlexAlign.lt-xl", "fxFlexAlign.gt-xs", "fxFlexAlign.gt-sm", "fxFlexAlign.gt-md", "fxFlexAlign.gt-lg"] }, { kind: "directive", type: i5.DefaultFlexDirective, selector: " [fxFlex], [fxFlex.xs], [fxFlex.sm], [fxFlex.md], [fxFlex.lg], [fxFlex.xl], [fxFlex.lt-sm], [fxFlex.lt-md], [fxFlex.lt-lg], [fxFlex.lt-xl], [fxFlex.gt-xs], [fxFlex.gt-sm], [fxFlex.gt-md], [fxFlex.gt-lg]", inputs: ["fxFlex", "fxFlex.xs", "fxFlex.sm", "fxFlex.md", "fxFlex.lg", "fxFlex.xl", "fxFlex.lt-sm", "fxFlex.lt-md", "fxFlex.lt-lg", "fxFlex.lt-xl", "fxFlex.gt-xs", "fxFlex.gt-sm", "fxFlex.gt-md", "fxFlex.gt-lg"] }, { kind: "directive", type: i6$1.DefaultClassDirective, selector: " [ngClass], [ngClass.xs], [ngClass.sm], [ngClass.md], [ngClass.lg], [ngClass.xl], [ngClass.lt-sm], [ngClass.lt-md], [ngClass.lt-lg], [ngClass.lt-xl], [ngClass.gt-xs], [ngClass.gt-sm], [ngClass.gt-md], [ngClass.gt-lg]", inputs: ["ngClass", "ngClass.xs", "ngClass.sm", "ngClass.md", "ngClass.lg", "ngClass.xl", "ngClass.lt-sm", "ngClass.lt-md", "ngClass.lt-lg", "ngClass.lt-xl", "ngClass.gt-xs", "ngClass.gt-sm", "ngClass.gt-md", "ngClass.gt-lg"] }, { kind: "directive", type: i7$1.CdkRowDef, selector: "[cdkRowDef]", inputs: ["cdkRowDefColumns", "cdkRowDefWhen"] }, { kind: "directive", type: i7$1.CdkCellDef, selector: "[cdkCellDef]" }, { kind: "directive", type: i7$1.CdkHeaderCellDef, selector: "[cdkHeaderCellDef]" }, { kind: "directive", type: i7$1.CdkColumnDef, selector: "[cdkColumnDef]", inputs: ["sticky", "cdkColumnDef", "stickyEnd"] }, { kind: "directive", type: i7$1.CdkHeaderRowDef, selector: "[cdkHeaderRowDef]", inputs: ["cdkHeaderRowDef", "cdkHeaderRowDefSticky"] }, { kind: "component", type: i8$1.MatTable, selector: "mat-table, table[mat-table]", exportAs: ["matTable"] }, { kind: "directive", type: i8$1.MatHeaderCell, selector: "mat-header-cell, th[mat-header-cell]" }, { kind: "directive", type: i8$1.MatCell, selector: "mat-cell, td[mat-cell]" }, { kind: "component", type: i8$1.MatHeaderRow, selector: "mat-header-row, tr[mat-header-row]", exportAs: ["matHeaderRow"] }, { kind: "component", type: i8$1.MatRow, selector: "mat-row, tr[mat-row]", exportAs: ["matRow"] }, { kind: "component", type: i6.MatIconButton, selector: "button[mat-icon-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i7.MatCheckbox, selector: "mat-checkbox", inputs: ["disableRipple", "color", "tabIndex"], exportAs: ["matCheckbox"] }, { kind: "component", type: i11.MatPaginator, selector: "mat-paginator", inputs: ["disabled"], exportAs: ["matPaginator"] }, { kind: "component", type: i12.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i8.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i8.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i8.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i8.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i8.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: i14.TextAreaComponent, selector: "kendo-textarea", inputs: ["focusableId", "flow", "rows", "cols", "maxlength", "tabindex", "tabIndex", "resizable", "size", "rounded", "fillMode"], outputs: ["focus", "blur", "valueChange"], exportAs: ["kendoTextArea"] }, { kind: "directive", type: i14.TextBoxDirective, selector: "input[kendoTextBox]", inputs: ["value"] }, { kind: "component", type: i14.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }, { kind: "directive", type: i15.MatTooltip, selector: "[matTooltip]", exportAs: ["matTooltip"] }, { kind: "component", type: i16.ComboBoxComponent, selector: "kendo-combobox", inputs: ["focusableId", "allowCustom", "data", "value", "textField", "valueField", "valuePrimitive", "valueNormalizer", "placeholder", "popupSettings", "listHeight", "iconClass", "loading", "suggest", "clearButton", "disabled", "itemDisabled", "readonly", "tabindex", "tabIndex", "filterable", "virtual", "size", "rounded", "fillMode"], outputs: ["valueChange", "selectionChange", "filterChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoComboBox"] }, { kind: "component", type: i16.DropDownListComponent, selector: "kendo-dropdownlist", inputs: ["iconClass", "loading", "data", "value", "textField", "valueField", "popupSettings", "listHeight", "defaultItem", "disabled", "itemDisabled", "readonly", "filterable", "virtual", "ignoreCase", "delay", "valuePrimitive", "tabindex", "tabIndex", "size", "rounded", "fillMode", "id"], outputs: ["valueChange", "filterChange", "selectionChange", "open", "opened", "close", "closed", "focus", "blur"], exportAs: ["kendoDropDownList"] }, { kind: "pipe", type: i4$1.AsyncPipe, name: "async" }, { kind: "pipe", type: i4$1.PercentPipe, name: "percent" }] }); }
|
|
471
|
+
}
|
|
472
|
+
__decorate([
|
|
473
|
+
Select(PieceWorkState.pieceworks)
|
|
474
|
+
], WidgetPieceworkInComponent.prototype, "pieceworks$", void 0);
|
|
475
|
+
__decorate([
|
|
476
|
+
Select(PieceWorkState.total)
|
|
477
|
+
], WidgetPieceworkInComponent.prototype, "total$", void 0);
|
|
478
|
+
__decorate([
|
|
479
|
+
Select(PieceWorkState.state)
|
|
480
|
+
], WidgetPieceworkInComponent.prototype, "state$", void 0);
|
|
481
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: WidgetPieceworkInComponent, decorators: [{
|
|
482
|
+
type: Component,
|
|
483
|
+
args: [{ selector: 'widget-piece-work-in', template: "<div fxLayout=\"column\" fxLayoutGap=\"20px\">\n <label *ngIf=\"!item.config?.simple_version\" fxFlex class=\"k-form-field\">\n <form class=\"k-form\" id=\"piecework_in_form\">\n <div fxLayout=\"row\" fxLayoutGap=\"8px\" fxLayoutAlign=\"start center\">\n <label fxFlex class=\"k-form-field\">\n <span>Barcode</span>\n <kendo-textarea\n placeholder=\"Scan barcodes here\"\n [resizable]=\"'vertical'\"\n [rows]=\"3\"\n [value]=\"getValue('barcodes', true)\"\n (valueChange)=\"buildBarcodeList($event)\"\n flow=\"vertical\">\n </kendo-textarea>\n </label>\n <button\n fxFlex=\"50px\"\n (click)=\"valueChange('barcodes', barcodes)\"\n matTooltip=\"Filter\"\n [matTooltipPosition]=\"'above'\"\n mat-icon-button\n color=\"primary\"\n aria-label=\"Example icon button with a heart icon\">\n <mat-icon>refresh</mat-icon>\n </button>\n </div>\n <div fxLayout=\"row\" fxLayoutGap=\"8px\" fxLayoutAlign=\"start center\">\n <label fxFlex=\"25%\" class=\"k-form-field\">\n <span>PW ID</span>\n <input\n style=\"width: 100%\"\n kendoTextBox\n [value]=\"getValue('piecework_id')\"\n (input)=\"valueChange('piecework_id', $event.target.value)\"\n name=\"piecework_id\"\n type=\"text\" />\n </label>\n\n <!-- <label fxFlex=\"20%\" class=\"k-form-field\">\n <span>Barcode</span>\n <kendo-textarea\n [style.marginBottom.px]=\"10\"\n placeholder=\"Event name\"\n resizable=\"auto\"\n flow=\"horizontal\"\n >\n </kendo-textarea>\n\n <!-- <input\n style=\"width: 100%\"\n kendoTextBox\n [value]=\"getValue('barcode')\"\n (input)=\"valueChange('barcode', $event.target.value)\"\n name=\"barcode\"\n type=\"text\"\n /> -->\n\n <label fxFlex=\"25%\" class=\"k-form-field\">\n <span>Employee</span>\n <kendo-combobox\n style=\"width: 100%\"\n name=\"user_id\"\n [value]=\"getValue('user_id')\"\n [filterable]=\"true\"\n (filterChange)=\"filterChange($event)\"\n (valueChange)=\"valueChange('user_id', $event)\"\n [data]=\"users\"\n [textField]=\"'full_name'\"\n [disabled]=\"!isAdmin\"\n [valueField]=\"'id'\"\n [valuePrimitive]=\"true\">\n </kendo-combobox>\n </label>\n\n <label fxFlex=\"25%\" class=\"k-form-field\">\n <span>Mode</span>\n <kendo-dropdownlist\n [defaultItem]=\"defaultItemMode\"\n [data]=\"modes\"\n [value]=\"getValue('mode_id')\"\n [valuePrimitive]=\"true\"\n (valueChange)=\"valueChange('mode_id', $event)\"\n [textField]=\"'controller'\"\n [valueField]=\"'id'\"\n name=\"true\">\n </kendo-dropdownlist>\n </label>\n\n <label fxFlex=\"25%\" class=\"k-form-field\">\n <span>Status</span>\n <kendo-dropdownlist\n [defaultItem]=\"defaultItemStatus\"\n [data]=\"statuses\"\n [value]=\"getValue('piecework_line_status_id')\"\n [valuePrimitive]=\"true\"\n (valueChange)=\"valueChange('piecework_line_status_id', $event)\"\n [textField]=\"'name'\"\n [valueField]=\"'id'\"\n name=\"true\">\n </kendo-dropdownlist>\n </label>\n </div>\n </form>\n </label>\n\n <mat-table #table [dataSource]=\"dataSource\">\n <ng-container cdkColumnDef=\"pw_line\">\n <mat-header-cell *cdkHeaderCellDef>PW</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ row.piecework?.id }}/{{ row.piecework_order_line }}</span>\n </mat-cell>\n </ng-container>\n <ng-container cdkColumnDef=\"employee\">\n <mat-header-cell *cdkHeaderCellDef>Employee</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ row?.piecework?.prepared_for?.full_name }}</span>\n </mat-cell>\n </ng-container>\n <ng-container cdkColumnDef=\"document\">\n <mat-header-cell *cdkHeaderCellDef>Document</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ row.document?.barcode }}</span>\n </mat-cell>\n </ng-container>\n <ng-container cdkColumnDef=\"assembly\">\n <mat-header-cell *cdkHeaderCellDef>Assembly</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ row.part?.part_number }}</span>\n </mat-cell>\n </ng-container>\n <!-- <ng-container cdkColumnDef=\"qty_max\">\n <mat-header-cell *cdkHeaderCellDef>Qty</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ getMaxQtyLeftForRow(row)}}</span>\n </mat-cell>\n </ng-container> -->\n <ng-container cdkColumnDef=\"mode\">\n <mat-header-cell *cdkHeaderCellDef>Mode</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ row.mode?.controller }}</span>\n </mat-cell>\n </ng-container>\n <ng-container cdkColumnDef=\"unit_price\">\n <mat-header-cell *cdkHeaderCellDef>Unit Price</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n {{ formatCurrency(row.unit_price, row.currency) }}\n </mat-cell>\n </ng-container>\n <ng-container cdkColumnDef=\"percentage\">\n <mat-header-cell *cdkHeaderCellDef>Job %</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n {{ row.work_percentage | percent }}\n </mat-cell>\n </ng-container>\n\n <ng-container cdkColumnDef=\"qty\">\n <mat-header-cell *cdkHeaderCellDef>Out / In</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n {{ row.out }} / {{ !row.in ? 0 : row.in }}\n </mat-cell>\n </ng-container>\n\n <ng-container cdkColumnDef=\"in\">\n <mat-header-cell *cdkHeaderCellDef>Qty In</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n {{ !row.in ? 0 : row.in }}\n </mat-cell>\n </ng-container>\n\n <ng-container cdkColumnDef=\"finish\">\n <mat-header-cell *cdkHeaderCellDef>Qty Finish</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n {{ row.finish }}\n </mat-cell>\n </ng-container>\n\n <ng-container cdkColumnDef=\"status\">\n <mat-header-cell *cdkHeaderCellDef>Status</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n {{ row.line_status?.name }}\n </mat-cell>\n </ng-container>\n\n <ng-container cdkColumnDef=\"total\">\n <mat-header-cell *cdkHeaderCellDef>Total</mat-header-cell>\n <mat-cell *cdkCellDef=\"let row\">\n <span>{{ formatCurrency(row.value, row.currency) }}</span>\n </mat-cell>\n </ng-container>\n\n <ng-container cdkColumnDef=\"actions\">\n <mat-header-cell [ngClass]=\"'pieceworkActionColumn'\" *cdkHeaderCellDef\n >Actions</mat-header-cell\n >\n <mat-cell [ngClass]=\"'pieceworkActionColumn'\" *cdkCellDef=\"let row\">\n <ng-container *ngIf=\"row.piecework_line_status_id == 1\">\n <div fxLayout=\"row\" fxLayoutGap=\"8px\" fxLayoutAlign=\"start center\">\n <kendo-numerictextbox\n [format]=\"'n0'\"\n style=\"width: 100%\"\n [min]=\"1\"\n [(ngModel)]=\"row.formIn\"\n [name]=\"'in_' + row.id\"\n [max]=\"getMax(row)\"\n type=\"number\"></kendo-numerictextbox>\n <mat-checkbox\n matTooltip=\"Finish\"\n [matTooltipPosition]=\"'above'\"\n fxFlexAlign=\"center\"\n [name]=\"'finish_' + row.id\"\n [(ngModel)]=\"row.formFinish\">\n </mat-checkbox>\n <button\n [disabled]=\"row.in == row.out || row.formIn > row.out - row.in\"\n matTooltip=\"Save\"\n (click)=\"registerIn(row, row.formIn, row.formFinish)\"\n [matTooltipPosition]=\"'above'\"\n mat-icon-button\n color=\"warn\"\n aria-label=\"Example icon button with a heart icon\">\n <mat-icon>save</mat-icon>\n </button>\n </div>\n </ng-container>\n <ng-container *ngIf=\"row.piecework_line_status_id == 2\">\n <span>Line finished</span>\n </ng-container>\n </mat-cell>\n </ng-container>\n\n <mat-header-row *cdkHeaderRowDef=\"displayedColumns\"></mat-header-row>\n <mat-row *cdkRowDef=\"let row; columns: displayedColumns\"></mat-row>\n </mat-table>\n <mat-paginator\n #paginator\n [length]=\"total$ | async\"\n [pageIndex]=\"0\"\n (page)=\"changePage($event)\"\n [pageSize]=\"10\"\n [pageSizeOptions]=\"[5, 10, 25, 100]\">\n </mat-paginator>\n</div>\n", styles: [":host{padding:10px;display:flex;flex-direction:column}.spacer{flex-grow:1}.pieceworkActionColumn{flex:0 0 350px;padding-left:0!important}\n"] }]
|
|
484
|
+
}], ctorParameters: function () { return [{ type: i1$1.ModeControllerService }, { type: i1$1.UserControllerService }, { type: i4.Store }, { type: i0.ChangeDetectorRef }, { type: i3.MatDialog }, { type: i1$1.PieceWorkLineStatusControllerControllerService }, { type: i1$1.PieceWorkLineControllerService }]; }, propDecorators: { pieceworks$: [], total$: [], state$: [] } });
|
|
485
|
+
class FormatTime {
|
|
486
|
+
convertTime(input, separator) {
|
|
487
|
+
const pad = input => {
|
|
488
|
+
return input < 10 ? '0' + input : input;
|
|
489
|
+
};
|
|
490
|
+
return [
|
|
491
|
+
pad(Math.floor(input / 3600)),
|
|
492
|
+
pad(Math.floor((input % 3600) / 60)),
|
|
493
|
+
pad(Math.floor(input % 60)),
|
|
494
|
+
].join(typeof separator !== 'undefined' ? separator : ':');
|
|
495
|
+
}
|
|
496
|
+
transform(value) {
|
|
497
|
+
return value ? this.convertTime(value, ':') : '00:00:00';
|
|
498
|
+
}
|
|
499
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormatTime, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
500
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: FormatTime, name: "formatTime" }); }
|
|
501
|
+
}
|
|
502
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FormatTime, decorators: [{
|
|
503
|
+
type: Pipe,
|
|
504
|
+
args: [{ name: 'formatTime' }]
|
|
505
|
+
}] });
|
|
506
|
+
|
|
507
|
+
class WidgetPieceworkInModule {
|
|
508
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: WidgetPieceworkInModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
509
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: WidgetPieceworkInModule, declarations: [WidgetPieceworkInComponent,
|
|
510
|
+
FormatTime,
|
|
511
|
+
PieceWorkInForm,
|
|
512
|
+
PieceworkInConfigModal], imports: [CommonModule,
|
|
513
|
+
FlexLayoutModule,
|
|
514
|
+
MatDialogModule,
|
|
515
|
+
CdkTableModule,
|
|
516
|
+
MatTableModule,
|
|
517
|
+
MatButtonModule,
|
|
518
|
+
MatCheckboxModule,
|
|
519
|
+
MatPaginatorModule,
|
|
520
|
+
MatIconModule,
|
|
521
|
+
FormsModule,
|
|
522
|
+
InputsModule,
|
|
523
|
+
MatTooltipModule,
|
|
524
|
+
DropDownsModule,
|
|
525
|
+
InputsModule,
|
|
526
|
+
FormsModule,
|
|
527
|
+
SwitchModule, i4.ɵNgxsFeatureModule, i2.DynamicComponentLoaderModule], exports: [WidgetPieceworkInComponent] }); }
|
|
528
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: WidgetPieceworkInModule, imports: [CommonModule,
|
|
529
|
+
FlexLayoutModule,
|
|
530
|
+
MatDialogModule,
|
|
531
|
+
CdkTableModule,
|
|
532
|
+
MatTableModule,
|
|
533
|
+
MatButtonModule,
|
|
534
|
+
MatCheckboxModule,
|
|
535
|
+
MatPaginatorModule,
|
|
536
|
+
MatIconModule,
|
|
537
|
+
FormsModule,
|
|
538
|
+
InputsModule,
|
|
539
|
+
MatTooltipModule,
|
|
540
|
+
DropDownsModule,
|
|
541
|
+
InputsModule,
|
|
542
|
+
FormsModule,
|
|
543
|
+
SwitchModule,
|
|
544
|
+
NgxsModule.forFeature([PieceWorkFrontState, PieceWorkState]),
|
|
545
|
+
DynamicComponentLoaderModule.forChild(WidgetPieceworkInComponent)] }); }
|
|
546
|
+
}
|
|
547
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: WidgetPieceworkInModule, decorators: [{
|
|
548
|
+
type: NgModule,
|
|
549
|
+
args: [{
|
|
550
|
+
declarations: [
|
|
551
|
+
WidgetPieceworkInComponent,
|
|
552
|
+
FormatTime,
|
|
553
|
+
PieceWorkInForm,
|
|
554
|
+
PieceworkInConfigModal,
|
|
555
|
+
],
|
|
556
|
+
imports: [
|
|
557
|
+
CommonModule,
|
|
558
|
+
FlexLayoutModule,
|
|
559
|
+
MatDialogModule,
|
|
560
|
+
CdkTableModule,
|
|
561
|
+
MatTableModule,
|
|
562
|
+
MatButtonModule,
|
|
563
|
+
MatCheckboxModule,
|
|
564
|
+
MatPaginatorModule,
|
|
565
|
+
MatIconModule,
|
|
566
|
+
FormsModule,
|
|
567
|
+
InputsModule,
|
|
568
|
+
MatTooltipModule,
|
|
569
|
+
DropDownsModule,
|
|
570
|
+
InputsModule,
|
|
571
|
+
FormsModule,
|
|
572
|
+
SwitchModule,
|
|
573
|
+
NgxsModule.forFeature([PieceWorkFrontState, PieceWorkState]),
|
|
574
|
+
DynamicComponentLoaderModule.forChild(WidgetPieceworkInComponent),
|
|
575
|
+
],
|
|
576
|
+
exports: [WidgetPieceworkInComponent],
|
|
577
|
+
}]
|
|
578
|
+
}] });
|
|
579
|
+
|
|
580
|
+
/*
|
|
581
|
+
* Public API Surface of widget-piecework-in
|
|
582
|
+
*/
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* Generated bundle index. Do not edit.
|
|
586
|
+
*/
|
|
587
|
+
|
|
588
|
+
export { FormatTime, WidgetPieceworkInComponent, WidgetPieceworkInModule };
|
|
589
|
+
//# sourceMappingURL=barcoding-widget-piecework-in.mjs.map
|