@seniorsistemas/yms-integration 1.37.0 → 1.38.0-591f5730-03b4-4f60-9cea-dcdc8ef07f02
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/bundles/seniorsistemas-yms-integration.umd.js +88 -27
- package/bundles/seniorsistemas-yms-integration.umd.js.map +1 -1
- package/bundles/seniorsistemas-yms-integration.umd.min.js +1 -1
- package/bundles/seniorsistemas-yms-integration.umd.min.js.map +1 -1
- package/esm2015/src/wms/components/document-grid/document-grid.component.js +10 -5
- package/esm2015/src/wms/components/document-grid/insert-key/insert-key.component.js +41 -16
- package/esm2015/src/wms/components/document-grid/register-document/register-document.component.js +35 -4
- package/esm2015/src/wms/components/document-list/document-list.component.js +6 -3
- package/esm2015/src/wms/entities/document/document.service.js +4 -1
- package/esm5/src/wms/components/document-grid/document-grid.component.js +10 -8
- package/esm5/src/wms/components/document-grid/insert-key/insert-key.component.js +42 -16
- package/esm5/src/wms/components/document-grid/register-document/register-document.component.js +36 -4
- package/esm5/src/wms/components/document-list/document-list.component.js +6 -3
- package/esm5/src/wms/entities/document/document.service.js +4 -1
- package/fesm2015/seniorsistemas-yms-integration.js +86 -24
- package/fesm2015/seniorsistemas-yms-integration.js.map +1 -1
- package/fesm5/seniorsistemas-yms-integration.js +88 -27
- package/fesm5/seniorsistemas-yms-integration.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-yms-integration.metadata.json +1 -1
- package/src/wms/components/document-grid/document-grid.component.d.ts +1 -0
- package/src/wms/components/document-grid/insert-key/insert-key.component.d.ts +6 -2
- package/src/wms/components/document-grid/register-document/register-document.component.d.ts +8 -1
- package/src/wms/entities/document/document.service.d.ts +1 -0
|
@@ -3316,6 +3316,9 @@
|
|
|
3316
3316
|
DocumentService.prototype.getSystemIntegration = function () {
|
|
3317
3317
|
return this.http.get('yms_int/wms/queries/getSystemIntegration');
|
|
3318
3318
|
};
|
|
3319
|
+
DocumentService.prototype.getPlanta = function (plantaId) {
|
|
3320
|
+
return this.http.get('yms/patio/entities/planta/' + plantaId);
|
|
3321
|
+
};
|
|
3319
3322
|
DocumentService = __decorate([
|
|
3320
3323
|
core.Injectable(),
|
|
3321
3324
|
__metadata("design:paramtypes", [http.HttpClient, api.MessageService])
|
|
@@ -3600,8 +3603,7 @@
|
|
|
3600
3603
|
DocumentGridComponent.prototype.wmsSeniorConnectIntegration = function () {
|
|
3601
3604
|
var columns = __spread([
|
|
3602
3605
|
{ field: "key", header: this.translate.instant("yms.int.wms_purchaseOrder") }
|
|
3603
|
-
], this.getColumnPartner());
|
|
3604
|
-
this.addInvoiceSituationIfNotClienteExterno(columns);
|
|
3606
|
+
], this.getColumnPartner(), this.getColumnlogistcUnit());
|
|
3605
3607
|
return columns;
|
|
3606
3608
|
};
|
|
3607
3609
|
DocumentGridComponent.prototype.wmsWisIntegration = function () {
|
|
@@ -3626,10 +3628,7 @@
|
|
|
3626
3628
|
return __spread([
|
|
3627
3629
|
{ field: "invoiceNumber", header: this.translate.instant("yms.int.wms_register_document_invoice_number") },
|
|
3628
3630
|
{ field: "invoiceSerialNumber", header: this.translate.instant("yms.int.wms_register_document_invoice_serial_number") }
|
|
3629
|
-
], this.getColumnPartner(),
|
|
3630
|
-
{ field: "logistcUnitName", header: this.translate.instant("yms.int.wms_register_document_logistc_unit_name") },
|
|
3631
|
-
{ field: "logistcUnitDocument", header: this.translate.instant("yms.int.wms_register_document_logistc_unit_document") },
|
|
3632
|
-
]);
|
|
3631
|
+
], this.getColumnPartner(), this.getColumnlogistcUnit());
|
|
3633
3632
|
};
|
|
3634
3633
|
DocumentGridComponent.prototype.getColumnPartner = function () {
|
|
3635
3634
|
return [
|
|
@@ -3637,6 +3636,12 @@
|
|
|
3637
3636
|
{ field: "partnerDocument", header: this.translate.instant("yms.int.wms_register_document_partner_document") },
|
|
3638
3637
|
];
|
|
3639
3638
|
};
|
|
3639
|
+
DocumentGridComponent.prototype.getColumnlogistcUnit = function () {
|
|
3640
|
+
return [
|
|
3641
|
+
{ field: "logistcUnitName", header: this.translate.instant("yms.int.wms_register_document_logistc_unit_name") },
|
|
3642
|
+
{ field: "logistcUnitDocument", header: this.translate.instant("yms.int.wms_register_document_logistc_unit_document") },
|
|
3643
|
+
];
|
|
3644
|
+
};
|
|
3640
3645
|
DocumentGridComponent.prototype.addInvoiceSituationIfNotClienteExterno = function (columns) {
|
|
3641
3646
|
if (!this.isClienteExterno) {
|
|
3642
3647
|
columns.push(this.getColumninvoiceCondition());
|
|
@@ -3701,7 +3706,7 @@
|
|
|
3701
3706
|
DocumentGridComponent = __decorate([
|
|
3702
3707
|
core.Component({
|
|
3703
3708
|
selector: 'document-grid',
|
|
3704
|
-
template: "<div *ngIf=\"this.processType === 'RECEBIMENTO_WMS'; else processNotConfigured\">\n <p-panel>\n <p-header>\n <div class=\"buttons\">\n <div>\n <s-button\n label=\"{{'yms.int.wms_add_document' | translate}}\"\n priority=\"primary\"\n [model]=\"getActions()\"\n [auxiliary]=\"false\"\n [disabled]=\"!enableButtonIsClienteExterno\">\n </s-button>\n <s-button\n label=\"{{'yms.wms_view_button' | translate}}\"\n priority=\"secondary\"\n [auxiliary]=\"false\"\n [disabled]=\"!selection || selection.length !== 1\"\n (onClick)=\"view()\">\n </s-button>\n <s-button\n label=\"{{'yms.wms_delete_button' | translate}}\"\n priority=\"secondary\"\n [disabled]=\"!selection || !selection.length || !enableButtonIsClienteExterno\"\n (click)=\"onDelete()\">\n </s-button>\n </div>\n <s-button\n id=\"refresh-button\"\n priority=\"default\"\n iconClass=\"fa fa-refresh\"\n (onClick)=\"listDocuments(false)\"\n [disabled]=\"notSavedDocuments()\"\n >\n </s-button>\n </div>\n </p-header>\n <div class=\"ui-g\">\n <div class=\"ui-g-12\" *ngIf=\"gridData && gridData.length; else emptyList\">\n <p-table #documentTable [value]=\"gridData\"\n [columns]=\"gridColumns\" dataKey=\"key\" [scrollable]=\"true\" [resizableColumns]=\"true\"\n [paginator]=\"true\" [totalRecords]=\"documentTotalRecords\" rows=\"10\"\n [rowsPerPageOptions]=\"[10, 20, 50, 100]\" [(selection)]=\"selection\"\n [loading]=\"loading\">\n <ng-template pTemplate=\"colgroup\" let-columns>\n <colgroup>\n <col *ngFor=\"let col of columns\" [style.width]=\"col.width\"/>\n </colgroup>\n </ng-template>\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th id=\"checkbox\" class=\"table-checkbox\">\n <p-tableHeaderCheckbox></p-tableHeaderCheckbox>\n </th>\n <th id=\"col\" *ngFor=\"let col of columns\" pResizableColumn>\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.header }}</span>\n </div>\n </th>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"body\" let-rowData let-columns let-expanded=\"expanded\">\n <tr [pSelectableRow]=\"rowData\">\n <td class=\"table-checkbox\">\n <p-tableCheckbox [value]=\"rowData\"></p-tableCheckbox>\n </td>\n <td *ngIf=\"isWmsSeniorConnect()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"key\"]}}</span>\n </td>\n <td *ngIf=\"isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"invoiceKey\"]}}</span>\n </td>\n <td *ngIf=\"isWmsWIS() || isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"invoiceNumber\"]}}</span>\n </td>\n <td *ngIf=\"isWmsWIS() || isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"invoiceSerialNumber\"]}}</span>\n </td>\n <td *ngIf=\"isWmsWIS() || isWmsSeniorConnect() || isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"partnerName\"]}}</span>\n </td>\n <td *ngIf=\"isWmsWIS() || isWmsSeniorConnect() || isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"partnerDocument\"]}}</span>\n </td>\n <td *ngIf=\"isWmsWIS() || isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"logistcUnitName\"]}}</span>\n </td>\n <td *ngIf=\"isWmsWIS() || isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"logistcUnitDocument\"]}}</span>\n </td>\n <td *ngIf=\"isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"ownerName\"]}}</span>\n </td>\n <td *ngIf=\"isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"ownerDocument\"]}}</span>\n </td>\n <td *ngIf=\"!isClienteExterno\" (click)=\"selection = [rowData]\">\n <p-dropdown\n inputId=\"invoiceCondition\"\n name=\"invoiceCondition\"\n [autoWidth]=\"false\"\n [options]=\"getFilteredInvoiceConditions(rowData?.invoiceCondition)\"\n appendTo=\"body\"\n [(ngModel)]=\"rowData.invoiceCondition\"\n (onChange)=\"disabled = false\">\n </p-dropdown>\n </td>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"paginatorright\">\n <span [translate]=\"'yms.main.total_records'\" \n [translateParams]=\"{ value: documentTotalRecords }\">\n </span>\n </ng-template>\n </p-table> \n </div>\n </div>\n <register-document\n [wmsSystem]=\"wmsSystem\"\n [edit]=\"edit\"\n [viewDocument]=\"selection\"\n (document)=\"onChangeDocument($event)\"\n [(visible)]=\"visibleDocumentRegister\"\n [agenda]=\"agenda\"\n [isClienteExterno]=\"isClienteExterno\">\n </register-document> \n <insert-key\n [wmsSystem]=\"wmsSystem\" \n (document)=\"onChangeDocument($event)\"\n [(visible)]=\"visibleInvoiceKey\">\n </insert-key>\n </p-panel>\n</div>\n <div class=\"button-save\">\n <s-button \n priority=\"primary\" [label]=\"'save' | translate\"\n [disabled]=\"disabled || !this.gridData || !enableButtonIsClienteExterno\"\n (click)=\"save()\">\n </s-button>\n </div>\n\n<ng-template #emptyList>\n <div class=\"center\">\n <s-empty-state\n iconClass=\"fa fa-exclamation-triangle\" [title]=\"'detail_empty_state_title' | translate\"\n [description]=\"'detail_empty_state_description' | translate\">\n </s-empty-state>\n </div>\n</ng-template>\n\n<ng-template #processNotConfigured>\n <div class=\"center\">\n <s-empty-state\n iconClass=\"fa fa-exclamation-triangle\"\n [title]=\"'yms.int.wms_there_no_process_type_configured_for_this_type_scheduling' | translate\">\n </s-empty-state>\n </div>\n</ng-template>",
|
|
3709
|
+
template: "<div *ngIf=\"this.processType === 'RECEBIMENTO_WMS'; else processNotConfigured\">\n <p-panel>\n <p-header>\n <div class=\"buttons\">\n <div>\n <s-button\n label=\"{{'yms.int.wms_add_document' | translate}}\"\n priority=\"primary\"\n [model]=\"getActions()\"\n [auxiliary]=\"false\"\n [disabled]=\"!enableButtonIsClienteExterno\">\n </s-button>\n <s-button\n label=\"{{'yms.wms_view_button' | translate}}\"\n priority=\"secondary\"\n [auxiliary]=\"false\"\n [disabled]=\"!selection || selection.length !== 1\"\n (onClick)=\"view()\">\n </s-button>\n <s-button\n label=\"{{'yms.wms_delete_button' | translate}}\"\n priority=\"secondary\"\n [disabled]=\"!selection || !selection.length || !enableButtonIsClienteExterno\"\n (click)=\"onDelete()\">\n </s-button>\n </div>\n <s-button\n id=\"refresh-button\"\n priority=\"default\"\n iconClass=\"fa fa-refresh\"\n (onClick)=\"listDocuments(false)\"\n [disabled]=\"notSavedDocuments()\"\n >\n </s-button>\n </div>\n </p-header>\n <div class=\"ui-g\">\n <div class=\"ui-g-12\" *ngIf=\"gridData && gridData.length; else emptyList\">\n <p-table #documentTable [value]=\"gridData\"\n [columns]=\"gridColumns\" dataKey=\"key\" [scrollable]=\"true\" [resizableColumns]=\"true\"\n [paginator]=\"true\" [totalRecords]=\"documentTotalRecords\" rows=\"10\"\n [rowsPerPageOptions]=\"[10, 20, 50, 100]\" [(selection)]=\"selection\"\n [loading]=\"loading\">\n <ng-template pTemplate=\"colgroup\" let-columns>\n <colgroup>\n <col *ngFor=\"let col of columns\" [style.width]=\"col.width\"/>\n </colgroup>\n </ng-template>\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th id=\"checkbox\" class=\"table-checkbox\">\n <p-tableHeaderCheckbox></p-tableHeaderCheckbox>\n </th>\n <th id=\"col\" *ngFor=\"let col of columns\" pResizableColumn>\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.header }}</span>\n </div>\n </th>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"body\" let-rowData let-columns let-expanded=\"expanded\">\n <tr [pSelectableRow]=\"rowData\">\n <td class=\"table-checkbox\">\n <p-tableCheckbox [value]=\"rowData\"></p-tableCheckbox>\n </td>\n <td *ngIf=\"isWmsSeniorConnect()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"key\"]}}</span>\n </td>\n <td *ngIf=\"isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"invoiceKey\"]}}</span>\n </td>\n <td *ngIf=\"isWmsWIS() || isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"invoiceNumber\"]}}</span>\n </td>\n <td *ngIf=\"isWmsWIS() || isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"invoiceSerialNumber\"]}}</span>\n </td>\n <td *ngIf=\"isWmsWIS() || isWmsSeniorConnect() || isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"partnerName\"]}}</span>\n </td>\n <td *ngIf=\"isWmsWIS() || isWmsSeniorConnect() || isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"partnerDocument\"]}}</span>\n </td>\n <td *ngIf=\"isWmsWIS() || isWmsSilt() || isWmsSeniorConnect()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"logistcUnitName\"]}}</span>\n </td>\n <td *ngIf=\"isWmsWIS() || isWmsSilt() || isWmsSeniorConnect()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"logistcUnitDocument\"]}}</span>\n </td>\n <td *ngIf=\"isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"ownerName\"]}}</span>\n </td>\n <td *ngIf=\"isWmsSilt()\" (click)=\"selection = [rowData]\">\n <span>{{rowData[\"ownerDocument\"]}}</span>\n </td>\n <td *ngIf=\"!isClienteExterno && isWmsWIS()\" (click)=\"selection = [rowData]\">\n <p-dropdown\n inputId=\"invoiceCondition\"\n name=\"invoiceCondition\"\n [autoWidth]=\"false\"\n [options]=\"getFilteredInvoiceConditions(rowData?.invoiceCondition)\"\n appendTo=\"body\"\n [(ngModel)]=\"rowData.invoiceCondition\"\n (onChange)=\"disabled = false\">\n </p-dropdown>\n </td>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"paginatorright\">\n <span [translate]=\"'yms.main.total_records'\" \n [translateParams]=\"{ value: documentTotalRecords }\">\n </span>\n </ng-template>\n </p-table> \n </div>\n </div>\n <register-document\n [wmsSystem]=\"wmsSystem\"\n [edit]=\"edit\"\n [viewDocument]=\"selection\"\n (document)=\"onChangeDocument($event)\"\n [(visible)]=\"visibleDocumentRegister\"\n [agenda]=\"agenda\"\n [isClienteExterno]=\"isClienteExterno\">\n </register-document> \n <insert-key\n [wmsSystem]=\"wmsSystem\" \n (document)=\"onChangeDocument($event)\"\n [agenda]=\"agenda\"\n [(visible)]=\"visibleInvoiceKey\">\n </insert-key>\n </p-panel>\n</div>\n <div class=\"button-save\">\n <s-button \n priority=\"primary\" [label]=\"'save' | translate\"\n [disabled]=\"disabled || !this.gridData || !enableButtonIsClienteExterno\"\n (click)=\"save()\">\n </s-button>\n </div>\n\n<ng-template #emptyList>\n <div class=\"center\">\n <s-empty-state\n iconClass=\"fa fa-exclamation-triangle\" [title]=\"'detail_empty_state_title' | translate\"\n [description]=\"'detail_empty_state_description' | translate\">\n </s-empty-state>\n </div>\n</ng-template>\n\n<ng-template #processNotConfigured>\n <div class=\"center\">\n <s-empty-state\n iconClass=\"fa fa-exclamation-triangle\"\n [title]=\"'yms.int.wms_there_no_process_type_configured_for_this_type_scheduling' | translate\">\n </s-empty-state>\n </div>\n</ng-template>",
|
|
3705
3710
|
styles: [".buttons{display:flex;justify-content:space-between}.center{flex-direction:column;text-align:center}.ui-g{display:block}.button-save{margin:5px 0}#refresh-button{color:#fff}.table-checkbox{width:50px}.invoice-condition .p-dropdown{position:relative;z-index:1000}"]
|
|
3706
3711
|
}),
|
|
3707
3712
|
__metadata("design:paramtypes", [core$1.TranslateService,
|
|
@@ -3757,9 +3762,11 @@
|
|
|
3757
3762
|
}());
|
|
3758
3763
|
|
|
3759
3764
|
var RegisterDocumentComponent = /** @class */ (function () {
|
|
3760
|
-
function RegisterDocumentComponent(fb, translate) {
|
|
3765
|
+
function RegisterDocumentComponent(fb, translate, utils, documentService) {
|
|
3761
3766
|
this.fb = fb;
|
|
3762
3767
|
this.translate = translate;
|
|
3768
|
+
this.utils = utils;
|
|
3769
|
+
this.documentService = documentService;
|
|
3763
3770
|
this.document = new core.EventEmitter();
|
|
3764
3771
|
this.visible = new core.EventEmitter();
|
|
3765
3772
|
this.visibleChange = new core.EventEmitter();
|
|
@@ -3767,12 +3774,23 @@
|
|
|
3767
3774
|
this.invoiceCondition = getInvoiceConditions(this.translate);
|
|
3768
3775
|
}
|
|
3769
3776
|
RegisterDocumentComponent.prototype.ngOnInit = function () {
|
|
3777
|
+
this.getYard();
|
|
3770
3778
|
this.getFormGroup();
|
|
3771
3779
|
this.watchFormChanges();
|
|
3772
3780
|
};
|
|
3773
3781
|
RegisterDocumentComponent.prototype.ngOnChanges = function () {
|
|
3774
3782
|
this.visibilityConfig();
|
|
3775
3783
|
};
|
|
3784
|
+
RegisterDocumentComponent.prototype.getYard = function () {
|
|
3785
|
+
var _this = this;
|
|
3786
|
+
this.documentService.getPlanta(this.agenda.planta.id)
|
|
3787
|
+
.pipe(operators.catchError(function (err) {
|
|
3788
|
+
return rxjs.throwError(err);
|
|
3789
|
+
}))
|
|
3790
|
+
.subscribe(function (content) {
|
|
3791
|
+
_this.planta = content;
|
|
3792
|
+
});
|
|
3793
|
+
};
|
|
3776
3794
|
RegisterDocumentComponent.prototype.visibilityConfig = function () {
|
|
3777
3795
|
if (!this.edit && this.visible) {
|
|
3778
3796
|
this.formGroup.disable();
|
|
@@ -3823,12 +3841,24 @@
|
|
|
3823
3841
|
});
|
|
3824
3842
|
};
|
|
3825
3843
|
RegisterDocumentComponent.prototype.save = function () {
|
|
3844
|
+
if (!this.planta.codigo) {
|
|
3845
|
+
this.utils.message("warn", "yms.int.yard_code_not_found_warning_header", "yms.int.yard_code_not_found_warning_description");
|
|
3846
|
+
return;
|
|
3847
|
+
}
|
|
3848
|
+
var logistcUnitDocument = this.formGroup.get("logistcUnitDocument").value;
|
|
3849
|
+
if (logistcUnitDocument !== this.planta.codigo) {
|
|
3850
|
+
this.utils.message("warn", "yms.int.document_yard_mismatch_agenda_warning_header", "yms.int.document_yard_mismatch_agenda_warning_description");
|
|
3851
|
+
return;
|
|
3852
|
+
}
|
|
3826
3853
|
this.document.emit(Document.fromDto(this.formGroup.getRawValue()));
|
|
3827
3854
|
this.formGroup.reset();
|
|
3828
3855
|
};
|
|
3829
3856
|
RegisterDocumentComponent.prototype.isWmsWis = function () {
|
|
3830
3857
|
return this.wmsSystem === WmsSystem.WIS;
|
|
3831
3858
|
};
|
|
3859
|
+
RegisterDocumentComponent.prototype.isWmsSenior = function () {
|
|
3860
|
+
return this.wmsSystem === WmsSystem.SENIOR;
|
|
3861
|
+
};
|
|
3832
3862
|
RegisterDocumentComponent.prototype.isWmsSeniorConnect = function () {
|
|
3833
3863
|
return this.wmsSystem === WmsSystem.SENIOR_CONNECT;
|
|
3834
3864
|
};
|
|
@@ -3874,9 +3904,12 @@
|
|
|
3874
3904
|
RegisterDocumentComponent = __decorate([
|
|
3875
3905
|
core.Component({
|
|
3876
3906
|
selector: "register-document",
|
|
3877
|
-
template: "<s-sidebar\n [visible]=\"visible\"\n header=\"{{ 'yms.int.wms_register_document_add_document' | translate }} {{ wmsSystem }}\"\n (visibleChange)=\"close()\"\n (onclose)=\"close()\">\n <form [formGroup]=\"formGroup\">\n <div class=\"ui-g ui-fluid\">\n <div class=\"ui-g-6\" *ngIf=\"isWmsSeniorConnect()\">\n <label for=\"key\">{{'yms.int.wms_purchaseOrder' | translate}}</label>\n <input id=\"key\" pInputText type=\"text\" formControlName=\"key\">\n </div>\n <div class=\"ui-g-6\" *ngIf=\"!isWmsSeniorConnect() && !isWmsWis()\">\n <label for=\"invoiceKey\">{{'yms.int.wms_register_document_invoice_key' | translate}}</label>\n <input id=\"invoiceKey\" pInputText type=\"text\" formControlName=\"invoiceKey\">\n </div>\n <div class=\"ui-g-6\" *ngIf=\"!isWmsSeniorConnect()\">\n <label for=\"invoiceNumber\">{{'yms.int.wms_register_document_invoice_number' | translate}}</label>\n <input id=\"invoiceNumber\" pInputText type=\"text\" formControlName=\"invoiceNumber\">\n </div>\n <div class=\"ui-g-6\" *ngIf=\"!isWmsSeniorConnect()\">\n <label for=\"invoiceSerialNumber\">\n {{'yms.int.wms_register_document_invoice_serial_number' | translate}}\n </label>\n <input id=\"invoiceSerialNumber\" pInputText type=\"text\" formControlName=\"invoiceSerialNumber\">\n </div>\n <div class=\"ui-g-8\">\n <label for=\"logistcUnitName\">{{'yms.int.wms_register_document_logistc_unit_name' | translate}}</label>\n <input id=\"logistcUnitName\" pInputText type=\"text\" formControlName=\"logistcUnitName\">\n </div>\n <div class=\"ui-g-4\">\n <label for=\"logistcUnitDocument\">\n {{'yms.int.wms_register_document_logistc_unit_document' | translate}}\n </label>\n <input id=\"logistcUnitDocument\" pInputText type=\"text\" formControlName=\"logistcUnitDocument\">\n </div>\n <div class=\"ui-g-8\" *ngIf=\"!isWmsSeniorConnect() && !isWmsWis()\">\n <label for=\"documentOwnerName\">{{'yms.int.wms_register_document_owner_name' | translate}}</label>\n <input id=\"documentOwnerName\" pInputText type=\"text\" formControlName=\"ownerName\">\n </div>\n <div class=\"ui-g-4\" *ngIf=\"!isWmsSeniorConnect() && !isWmsWis()\">\n <label for=\"ownerDocument\">{{'yms.int.wms_register_document_owner_document' | translate}}</label>\n <input id=\"ownerDocument\" pInputText type=\"text\" formControlName=\"ownerDocument\">\n </div>\n <div class=\"ui-g-8\">\n <label for=\"partnerName\">{{'yms.int.wms_register_document_partner_name' | translate}}</label>\n <input id=\"partnerName\" pInputText type=\"text\" formControlName=\"partnerName\">\n </div>\n <div class=\"ui-g-4\">\n <label for=\"partnerDocument\">{{'yms.int.wms_register_document_partner_document' | translate}}</label>\n <input id=\"partnerDocument\" pInputText type=\"text\" formControlName=\"partnerDocument\">\n </div>\n <div class=\"ui-g-12\">\n <label for=\"notes\" id=\"notes\">{{'yms.int.wms_register_document_notes' | translate}}</label>\n <textarea id=\"notes\" rows=\"4\" pInputTextarea autoResize=\"autoResize\" formControlName=\"notes\"></textarea>\n </div>\n <div class=\"ui-g-4\">\n <label for=\"code\">\n {{'yms.int.wms_register_document_order_receiving_code' | translate}}\n </label>\n <input id=\"code\" pInputText type=\"text\" formControlName=\"code\">\n </div>\n <div class=\"ui-g-4\" *ngIf=\"!isClienteExterno\">\n <label for=\"invoiceCondition\" id=\"invoiceCondition\">\n {{'yms.int.wms_grid_document_invoice_condition' | translate}}\n </label>\n <p-dropdown\n inputId=\"invoiceCondition\"\n name=\"invoiceCondition\"\n [autoWidth]=\"false\"\n [options]=\"invoiceCondition\"\n formControlName=\"invoiceCondition\"\n ></p-dropdown>\n </div>\n </div>\n </form>\n <div class=\"space-between\">\n <button\n pButton label=\"{{'save' | translate}}\"\n (click)=\"save()\"\n [attr.data-hidden]=\"hideSaveButton\"\n [disabled]=\"!isSaveFormValid\">\n </button>\n <button\n type=\"button\" class=\"ui-button-link\" pButton label=\"{{'cancel' | translate}}\" (click)=\"close()\">\n </button>\n </div>\n</s-sidebar>"
|
|
3907
|
+
template: "<s-sidebar\n [visible]=\"visible\"\n header=\"{{ 'yms.int.wms_register_document_add_document' | translate }} {{ wmsSystem }}\"\n (visibleChange)=\"close()\"\n (onclose)=\"close()\">\n <form [formGroup]=\"formGroup\">\n <div class=\"ui-g ui-fluid\">\n <div class=\"ui-g-6\" *ngIf=\"isWmsSeniorConnect()\">\n <label for=\"key\">{{'yms.int.wms_purchaseOrder' | translate}}</label>\n <input id=\"key\" pInputText type=\"text\" formControlName=\"key\">\n </div>\n <div class=\"ui-g-6\" *ngIf=\"!isWmsSeniorConnect() && !isWmsWis()\">\n <label for=\"invoiceKey\">{{'yms.int.wms_register_document_invoice_key' | translate}}</label>\n <input id=\"invoiceKey\" pInputText type=\"text\" formControlName=\"invoiceKey\">\n </div>\n <div class=\"ui-g-6\" *ngIf=\"!isWmsSeniorConnect()\">\n <label for=\"invoiceNumber\">{{'yms.int.wms_register_document_invoice_number' | translate}}</label>\n <input id=\"invoiceNumber\" pInputText type=\"text\" formControlName=\"invoiceNumber\">\n </div>\n <div class=\"ui-g-6\" *ngIf=\"!isWmsSeniorConnect()\">\n <label for=\"invoiceSerialNumber\">\n {{'yms.int.wms_register_document_invoice_serial_number' | translate}}\n </label>\n <input id=\"invoiceSerialNumber\" pInputText type=\"text\" formControlName=\"invoiceSerialNumber\">\n </div>\n <div class=\"ui-g-8\">\n <label for=\"logistcUnitName\">{{'yms.int.wms_register_document_logistc_unit_name' | translate}}</label>\n <input id=\"logistcUnitName\" pInputText type=\"text\" formControlName=\"logistcUnitName\">\n </div>\n <div class=\"ui-g-4\">\n <label for=\"logistcUnitDocument\">\n {{'yms.int.wms_register_document_logistc_unit_document' | translate}}\n </label>\n <input id=\"logistcUnitDocument\" pInputText type=\"text\" formControlName=\"logistcUnitDocument\">\n </div>\n <div class=\"ui-g-8\" *ngIf=\"!isWmsSeniorConnect() && !isWmsWis()\">\n <label for=\"documentOwnerName\">{{'yms.int.wms_register_document_owner_name' | translate}}</label>\n <input id=\"documentOwnerName\" pInputText type=\"text\" formControlName=\"ownerName\">\n </div>\n <div class=\"ui-g-4\" *ngIf=\"!isWmsSeniorConnect() && !isWmsWis()\">\n <label for=\"ownerDocument\">{{'yms.int.wms_register_document_owner_document' | translate}}</label>\n <input id=\"ownerDocument\" pInputText type=\"text\" formControlName=\"ownerDocument\">\n </div>\n <div class=\"ui-g-8\">\n <label for=\"partnerName\">{{'yms.int.wms_register_document_partner_name' | translate}}</label>\n <input id=\"partnerName\" pInputText type=\"text\" formControlName=\"partnerName\">\n </div>\n <div class=\"ui-g-4\">\n <label for=\"partnerDocument\">{{'yms.int.wms_register_document_partner_document' | translate}}</label>\n <input id=\"partnerDocument\" pInputText type=\"text\" formControlName=\"partnerDocument\">\n </div>\n <div class=\"ui-g-12\">\n <label for=\"notes\" id=\"notes\">{{'yms.int.wms_register_document_notes' | translate}}</label>\n <textarea id=\"notes\" rows=\"4\" pInputTextarea autoResize=\"autoResize\" formControlName=\"notes\"></textarea>\n </div>\n <div class=\"ui-g-4\" *ngIf=\"isWmsSenior() || isWmsWis()\">\n <label for=\"code\">\n {{'yms.int.wms_register_document_order_receiving_code' | translate}}\n </label>\n <input id=\"code\" pInputText type=\"text\" formControlName=\"code\">\n </div>\n <div class=\"ui-g-4\" *ngIf=\"!isClienteExterno && isWmsWis()\">\n <label for=\"invoiceCondition\" id=\"invoiceCondition\">\n {{'yms.int.wms_grid_document_invoice_condition' | translate}}\n </label>\n <p-dropdown\n inputId=\"invoiceCondition\"\n name=\"invoiceCondition\"\n [autoWidth]=\"false\"\n [options]=\"invoiceCondition\"\n formControlName=\"invoiceCondition\"\n ></p-dropdown>\n </div>\n </div>\n </form>\n <div class=\"space-between\">\n <button\n pButton label=\"{{'save' | translate}}\"\n (click)=\"save()\"\n [attr.data-hidden]=\"hideSaveButton\"\n [disabled]=\"!isSaveFormValid\">\n </button>\n <button\n type=\"button\" class=\"ui-button-link\" pButton label=\"{{'cancel' | translate}}\" (click)=\"close()\">\n </button>\n </div>\n</s-sidebar>"
|
|
3878
3908
|
}),
|
|
3879
|
-
__metadata("design:paramtypes", [forms.FormBuilder,
|
|
3909
|
+
__metadata("design:paramtypes", [forms.FormBuilder,
|
|
3910
|
+
core$1.TranslateService,
|
|
3911
|
+
UtilsMessageService,
|
|
3912
|
+
DocumentService])
|
|
3880
3913
|
], RegisterDocumentComponent);
|
|
3881
3914
|
return RegisterDocumentComponent;
|
|
3882
3915
|
}());
|
|
@@ -3930,8 +3963,8 @@
|
|
|
3930
3963
|
this.confirmationService = confirmationService;
|
|
3931
3964
|
this.translate = translate;
|
|
3932
3965
|
this.externalTenantService = externalTenantService;
|
|
3933
|
-
this.document = new core.EventEmitter();
|
|
3934
3966
|
this.visible = new core.EventEmitter();
|
|
3967
|
+
this.document = new core.EventEmitter();
|
|
3935
3968
|
this.visibleChange = new core.EventEmitter();
|
|
3936
3969
|
this.isLoading = false;
|
|
3937
3970
|
this.isPartnerloading = false;
|
|
@@ -3939,6 +3972,7 @@
|
|
|
3939
3972
|
}
|
|
3940
3973
|
InsertKeyComponent.prototype.ngOnInit = function () {
|
|
3941
3974
|
var _this = this;
|
|
3975
|
+
this.getYard();
|
|
3942
3976
|
this.formGroup = this.formBuilder.group({
|
|
3943
3977
|
key: [undefined],
|
|
3944
3978
|
purchaseOrder: [undefined],
|
|
@@ -3950,6 +3984,16 @@
|
|
|
3950
3984
|
_this.validateKeyDetails(nf);
|
|
3951
3985
|
});
|
|
3952
3986
|
};
|
|
3987
|
+
InsertKeyComponent.prototype.getYard = function () {
|
|
3988
|
+
var _this = this;
|
|
3989
|
+
this.documentService.getPlanta(this.agenda.planta.id)
|
|
3990
|
+
.pipe(operators.catchError(function (err) {
|
|
3991
|
+
return rxjs.throwError(err);
|
|
3992
|
+
}))
|
|
3993
|
+
.subscribe(function (content) {
|
|
3994
|
+
_this.planta = content;
|
|
3995
|
+
});
|
|
3996
|
+
};
|
|
3953
3997
|
InsertKeyComponent.prototype.isWmsWis = function () {
|
|
3954
3998
|
return this.wmsSystem === WmsSystem.WIS;
|
|
3955
3999
|
};
|
|
@@ -3980,7 +4024,7 @@
|
|
|
3980
4024
|
_this.utils.message("error", "yms.int.wms_error_search_document_message_header", "yms.int.wms_error_search_document_not_found_message_content");
|
|
3981
4025
|
}
|
|
3982
4026
|
else {
|
|
3983
|
-
_this.utils.translateMessage("error", "yms.int.wms_error_search_document_message_header", "yms.int.wms_error_unknown_search_document_message_content" + err.error.message);
|
|
4027
|
+
_this.utils.translateMessage("error", "yms.int.wms_error_search_document_message_header", "yms.int.wms_error_unknown_search_document_message_content " + err.error.message);
|
|
3984
4028
|
}
|
|
3985
4029
|
_this.confirmInvoiceDialog();
|
|
3986
4030
|
return rxjs.throwError(err);
|
|
@@ -3993,6 +4037,14 @@
|
|
|
3993
4037
|
return;
|
|
3994
4038
|
}
|
|
3995
4039
|
var document = content.contents[0];
|
|
4040
|
+
if (!_this.planta.codigo) {
|
|
4041
|
+
_this.utils.message("warn", "yms.int.yard_code_not_found_warning_header", "yms.int.yard_code_not_found_warning_description");
|
|
4042
|
+
return;
|
|
4043
|
+
}
|
|
4044
|
+
if (document.logistcUnitDocument !== _this.planta.codigo) {
|
|
4045
|
+
_this.utils.message("warn", "yms.int.document_yard_mismatch_agenda_warning_header", "yms.int.document_yard_mismatch_agenda_warning_description");
|
|
4046
|
+
return;
|
|
4047
|
+
}
|
|
3996
4048
|
document.invoiceKey = _this.formGroup.get('key').value;
|
|
3997
4049
|
document.invoiceCondition = InvoiceCondition.AUTHORIZED;
|
|
3998
4050
|
_this.document.emit(document);
|
|
@@ -4001,13 +4053,15 @@
|
|
|
4001
4053
|
};
|
|
4002
4054
|
InsertKeyComponent.prototype.confirmInvoiceDialog = function () {
|
|
4003
4055
|
var _this = this;
|
|
4004
|
-
this.
|
|
4005
|
-
|
|
4006
|
-
|
|
4007
|
-
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4056
|
+
if (this.isWmsWis()) {
|
|
4057
|
+
this.confirmationService.confirm({
|
|
4058
|
+
message: this.translate.instant("yms.int.wms_message_confirm_invoice_dialog"),
|
|
4059
|
+
acceptLabel: this.translate.instant("yms.int.wms_accept_confirm_invoice_dialog"),
|
|
4060
|
+
rejectLabel: this.translate.instant("yms.int.wms_reject_confirm_invoice_dialog"),
|
|
4061
|
+
header: this.translate.instant("yms.int.wms_header_content_confirm_invoice_dialog"),
|
|
4062
|
+
accept: function () { return _this.buildInvoice(); }
|
|
4063
|
+
});
|
|
4064
|
+
}
|
|
4011
4065
|
};
|
|
4012
4066
|
InsertKeyComponent.prototype.buildInvoice = function () {
|
|
4013
4067
|
var _this = this;
|
|
@@ -4080,18 +4134,22 @@
|
|
|
4080
4134
|
InsertKeyComponent.prototype.onDialogShow = function () {
|
|
4081
4135
|
this.formGroup.reset();
|
|
4082
4136
|
};
|
|
4083
|
-
__decorate([
|
|
4084
|
-
core.Output(),
|
|
4085
|
-
__metadata("design:type", core.EventEmitter)
|
|
4086
|
-
], InsertKeyComponent.prototype, "document", void 0);
|
|
4087
4137
|
__decorate([
|
|
4088
4138
|
core.Input(),
|
|
4089
|
-
__metadata("design:type",
|
|
4090
|
-
], InsertKeyComponent.prototype, "
|
|
4139
|
+
__metadata("design:type", Agenda)
|
|
4140
|
+
], InsertKeyComponent.prototype, "agenda", void 0);
|
|
4091
4141
|
__decorate([
|
|
4092
4142
|
core.Input(),
|
|
4093
4143
|
__metadata("design:type", String)
|
|
4094
4144
|
], InsertKeyComponent.prototype, "wmsSystem", void 0);
|
|
4145
|
+
__decorate([
|
|
4146
|
+
core.Input(),
|
|
4147
|
+
__metadata("design:type", core.EventEmitter)
|
|
4148
|
+
], InsertKeyComponent.prototype, "visible", void 0);
|
|
4149
|
+
__decorate([
|
|
4150
|
+
core.Output(),
|
|
4151
|
+
__metadata("design:type", core.EventEmitter)
|
|
4152
|
+
], InsertKeyComponent.prototype, "document", void 0);
|
|
4095
4153
|
__decorate([
|
|
4096
4154
|
core.Output(),
|
|
4097
4155
|
__metadata("design:type", Object)
|
|
@@ -4267,6 +4325,9 @@
|
|
|
4267
4325
|
{ field: "key", label: 'yms.int.wms_purchaseOrder' },
|
|
4268
4326
|
{ field: "partnerName", label: 'yms.int.wms_register_document_invoice_partner_name' },
|
|
4269
4327
|
{ field: "partnerDocument", label: 'yms.int.wms_register_document_invoice_partner_document' },
|
|
4328
|
+
{ field: "logistcUnitName", label: 'yms.int.wms_register_document_logistc_unit_name' },
|
|
4329
|
+
{ field: "logistcUnitDocument", label: 'yms.int.wms_register_document_logistc_unit_document' },
|
|
4330
|
+
{ field: "notes", label: 'yms.int.wms_register_document_notes' },
|
|
4270
4331
|
];
|
|
4271
4332
|
}
|
|
4272
4333
|
return __spread([
|
|
@@ -4361,8 +4422,8 @@
|
|
|
4361
4422
|
], DocumentListComponent.prototype, "wmsSystem", void 0);
|
|
4362
4423
|
DocumentListComponent = __decorate([
|
|
4363
4424
|
core.Component({
|
|
4364
|
-
template: "<div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <p-table\n selectionMode=\"single\"\n [(selection)]=\"selected\"\n [value]=\"documents\"\n [columns]=\"getColumns\"\n dataKey=\"id\"\n rows=\"10\"\n [paginator]=\"true\"\n [totalRecords]=\"gridTotalRecords\"\n [lazy]=\"true\"\n [resizableColumns]=\"true\"\n (onLazyLoad)=\"updateGridData($event)\"\n *sLoadingState=\"gridLoading\"\n sortMode=\"multiple\"\n styleClass=\"sds-table-scrollable\"\n [rowsPerPageOptions]=\"[10, 20, 50, 100, 200]\"\n paginatorDropdownScrollHeight=\"250px\"\n [scrollable]=\"true\"\n >\n <ng-template pTemplate=\"colgroup\" let-columns>\n <colgroup>\n <col *ngFor=\"let col of columns\"
|
|
4365
|
-
styles: [".
|
|
4425
|
+
template: "<div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <p-table\n selectionMode=\"single\"\n [(selection)]=\"selected\"\n [value]=\"documents\"\n [columns]=\"getColumns\"\n dataKey=\"id\"\n rows=\"10\"\n [paginator]=\"true\"\n [totalRecords]=\"gridTotalRecords\"\n [lazy]=\"true\"\n [resizableColumns]=\"true\"\n (onLazyLoad)=\"updateGridData($event)\"\n *sLoadingState=\"gridLoading\"\n sortMode=\"multiple\"\n styleClass=\"sds-table-scrollable\"\n [rowsPerPageOptions]=\"[10, 20, 50, 100, 200]\"\n paginatorDropdownScrollHeight=\"250px\"\n [scrollable]=\"true\"\n >\n <ng-template pTemplate=\"colgroup\" let-columns>\n <colgroup>\n <col *ngFor=\"let col of columns\" [style.width]=\"col.field === 'notes' ? '400px' : '250px'\">\n </colgroup>\n </ng-template>\n\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th *ngFor=\"let col of columns\" pResizableColumn [pSortableColumn]=\"col.field\" scope=\"col\">\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.label | translate }}</span>\n <p-sortIcon [field]=\"col.field\"></p-sortIcon>\n </div>\n </th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"body\" let-rowData let-columns=\"columns\">\n <tr *ngIf=\"isWmsWIS()\">\n <td>{{ rowData?.invoiceNumber || 'N/A' }}</td>\n <td>{{ rowData?.invoiceSerialNumber || 'N/A' }}</td>\n <td>{{ rowData?.invoiceKey || 'N/A' }}</td>\n <td>{{ rowData?.partnerName || 'N/A' }}</td>\n <td>{{ rowData?.partnerDocument || 'N/A' }}</td>\n <td>{{ rowData?.code || 'N/A' }}</td>\n <td>\n <p-dropdown\n inputId=\"invoiceCondition\"\n name=\"invoiceCondition\"\n [autoWidth]=\"false\"\n [options]=\"getFilteredInvoiceConditions(rowData?.invoiceCondition)\"\n appendTo=\"body\"\n [(ngModel)]=\"rowData.invoiceCondition\"\n [disabled]=\"isAuthorized(rowData.invoiceCondition)\"\n (onChange)=\"onInvoiceConditionChange($event, rowData)\">\n </p-dropdown>\n </td>\n <td>{{ rowData?.notes || 'N/A' }}</td>\n </tr>\n <tr *ngIf=\"isWmsSeniorConnect()\">\n <td>{{rowData?.key}}</td>\n <td>{{rowData?.partnerName}}</td>\n <td>{{rowData?.partnerDocument}}</td>\n <td>{{rowData?.logistcUnitName}}</td>\n <td>{{rowData?.logistcUnitDocument}}</td>\n <td>{{rowData?.notes}}</td>\n </tr>\n <tr *ngIf=\"!isWmsWIS() && !isWmsSeniorConnect()\">\n <td>{{rowData?.invoiceKey}}</td>\n <td>{{rowData?.invoiceNumber}}</td>\n <td>{{rowData?.invoiceSerialNumber}}</td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"paginatorright\">\n <span>\n {{ gridTotalRecords + \" \" + \n ('yms.int.wms_register_document_total_elements' | translate:{value: gridTotalRecords}) }}\n </span>\n </ng-template>\n </p-table>\n <div class=\"button-save\">\n <s-button priority=\"primary\" [label]=\"'save' | translate\"\n [disabled]=\"!disabled || !this.documents\"\n (click)=\"save()\">\n </s-button>\n </div>\n </div>\n</div>",
|
|
4426
|
+
styles: [".button-save{margin:5px 0}"]
|
|
4366
4427
|
}),
|
|
4367
4428
|
__metadata("design:paramtypes", [DocumentService,
|
|
4368
4429
|
core$1.TranslateService,
|