@seniorsistemas/yms-integration 1.27.2 → 1.28.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/bundles/seniorsistemas-yms-integration.umd.js +191 -199
- 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/seniorsistemas-yms-integration.js +41 -43
- package/esm2015/src/wms/components/document-grid/document-grid.component.js +38 -10
- package/esm2015/src/wms/components/document-grid/insert-key/insert-key.component.js +2 -2
- package/esm2015/src/wms/components/document-grid/register-document/register-document.component.js +5 -14
- package/esm5/seniorsistemas-yms-integration.js +41 -43
- package/esm5/src/wms/components/document-grid/document-grid.component.js +39 -12
- package/esm5/src/wms/components/document-grid/insert-key/insert-key.component.js +2 -2
- package/esm5/src/wms/components/document-grid/register-document/register-document.component.js +5 -15
- package/fesm2015/seniorsistemas-yms-integration.js +149 -145
- package/fesm2015/seniorsistemas-yms-integration.js.map +1 -1
- package/fesm5/seniorsistemas-yms-integration.js +150 -156
- package/fesm5/seniorsistemas-yms-integration.js.map +1 -1
- package/package.json +1 -1
- package/seniorsistemas-yms-integration.d.ts +40 -42
- package/seniorsistemas-yms-integration.metadata.json +1 -1
- package/src/wms/components/document-grid/document-grid.component.d.ts +11 -3
- package/src/wms/components/document-grid/register-document/register-document.component.d.ts +1 -4
- package/esm2015/src/wms/entities/agenda/agenda.service.js +0 -22
- package/esm2015/src/wms/entities/entity-service.js +0 -4
- package/esm5/src/wms/entities/agenda/agenda.service.js +0 -25
- package/esm5/src/wms/entities/entity-service.js +0 -11
- package/src/wms/entities/agenda/agenda.service.d.ts +0 -9
- package/src/wms/entities/entity-service.d.ts +0 -3
|
@@ -3207,10 +3207,12 @@
|
|
|
3207
3207
|
this.selection = [];
|
|
3208
3208
|
}
|
|
3209
3209
|
DocumentGridComponent.prototype.ngOnInit = function () {
|
|
3210
|
-
this.gridColumns = this.getGridColumns();
|
|
3211
3210
|
this.getProcessTypeByScheduling();
|
|
3212
3211
|
this.listDocuments();
|
|
3213
3212
|
};
|
|
3213
|
+
DocumentGridComponent.prototype.ngAfterContentChecked = function () {
|
|
3214
|
+
this.gridColumns = this.getGridColumns();
|
|
3215
|
+
};
|
|
3214
3216
|
DocumentGridComponent.prototype.getProcessTypeByScheduling = function () {
|
|
3215
3217
|
var _this = this;
|
|
3216
3218
|
this.integrationService.getProcessTypeByScheduling(this.agenda.tipoAgendamento.id)
|
|
@@ -3224,7 +3226,7 @@
|
|
|
3224
3226
|
var _this = this;
|
|
3225
3227
|
return [
|
|
3226
3228
|
{
|
|
3227
|
-
label: this.translate.instant("yms.int.
|
|
3229
|
+
label: this.translate.instant("yms.int.wms_search"),
|
|
3228
3230
|
command: function () {
|
|
3229
3231
|
_this.selection = [];
|
|
3230
3232
|
_this.visibleInvoiceKey = true;
|
|
@@ -3268,7 +3270,7 @@
|
|
|
3268
3270
|
}
|
|
3269
3271
|
};
|
|
3270
3272
|
DocumentGridComponent.prototype.updateKeyByWms = function (data) {
|
|
3271
|
-
if (data.key
|
|
3273
|
+
if (!data.key) {
|
|
3272
3274
|
data.key = data.invoiceKey;
|
|
3273
3275
|
}
|
|
3274
3276
|
if (this.wmsSystem === WmsSystem.WIS) {
|
|
@@ -3328,17 +3330,42 @@
|
|
|
3328
3330
|
});
|
|
3329
3331
|
};
|
|
3330
3332
|
DocumentGridComponent.prototype.getGridColumns = function () {
|
|
3331
|
-
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
|
|
3336
|
-
|
|
3333
|
+
if (this.isWmsSeniorConnect()) {
|
|
3334
|
+
return __spread([
|
|
3335
|
+
{ field: "key", header: this.translate.instant("yms.int.wms_purchaseOrder") }
|
|
3336
|
+
], this.getColumnPartner());
|
|
3337
|
+
}
|
|
3338
|
+
if (this.isWmsWIS()) {
|
|
3339
|
+
return this.getColumnInvoiceAndlogistcUnit();
|
|
3340
|
+
}
|
|
3341
|
+
return __spread([
|
|
3342
|
+
{ field: "invoiceKey", header: this.translate.instant("yms.int.wms_register_document_invoice_key") }
|
|
3343
|
+
], this.getColumnInvoiceAndlogistcUnit(), [
|
|
3337
3344
|
{ field: "ownerName", header: this.translate.instant("yms.int.wms_register_document_owner_name") },
|
|
3338
3345
|
{ field: "ownerDocument", header: this.translate.instant("yms.int.wms_register_document_owner_document") },
|
|
3339
|
-
|
|
3346
|
+
]);
|
|
3347
|
+
};
|
|
3348
|
+
DocumentGridComponent.prototype.getColumnInvoiceAndlogistcUnit = function () {
|
|
3349
|
+
return __spread([
|
|
3350
|
+
{ field: "invoiceNumber", header: this.translate.instant("yms.int.wms_register_document_invoice_number") },
|
|
3351
|
+
{ field: "invoiceSerialNumber", header: this.translate.instant("yms.int.wms_register_document_invoice_serial_number") }
|
|
3352
|
+
], this.getColumnPartner(), [
|
|
3353
|
+
{ field: "logistcUnitName", header: this.translate.instant("yms.int.wms_register_document_logistc_unit_name") },
|
|
3354
|
+
{ field: "logistcUnitDocument", header: this.translate.instant("yms.int.wms_register_document_logistc_unit_document") },
|
|
3355
|
+
]);
|
|
3356
|
+
};
|
|
3357
|
+
DocumentGridComponent.prototype.getColumnPartner = function () {
|
|
3358
|
+
return [
|
|
3359
|
+
{ field: "partnerName", header: this.translate.instant("yms.int.wms_register_document_partner_name") },
|
|
3360
|
+
{ field: "partnerDocument", header: this.translate.instant("yms.int.wms_register_document_partner_document") },
|
|
3340
3361
|
];
|
|
3341
3362
|
};
|
|
3363
|
+
DocumentGridComponent.prototype.isWmsSeniorConnect = function () {
|
|
3364
|
+
return this.wmsSystem === WmsSystem.SENIOR_CONNECT;
|
|
3365
|
+
};
|
|
3366
|
+
DocumentGridComponent.prototype.isWmsWIS = function () {
|
|
3367
|
+
return this.wmsSystem === WmsSystem.WIS;
|
|
3368
|
+
};
|
|
3342
3369
|
DocumentGridComponent.prototype.message = function (severity, summary, detail) {
|
|
3343
3370
|
this.messageService.add({
|
|
3344
3371
|
severity: severity,
|
|
@@ -3393,7 +3420,7 @@
|
|
|
3393
3420
|
DocumentGridComponent = __decorate([
|
|
3394
3421
|
core.Component({
|
|
3395
3422
|
selector: 'document-grid',
|
|
3396
|
-
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 </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\"\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()\"\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=\"id\" [lazy]=\"true\" [scrollable]=\"true\" [resizableColumns]=\"true\"\n sortMode=\"multiple\" [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\" [pSortableColumn]=\"col.field\" pResizableColumn>\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.header }}</span>\n <p-sortIcon [field]=\"col.field\"></p-sortIcon>\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
|
|
3423
|
+
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 </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\"\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()\"\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=\"id\" [lazy]=\"true\" [scrollable]=\"true\" [resizableColumns]=\"true\"\n sortMode=\"multiple\" [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\" [pSortableColumn]=\"col.field\" pResizableColumn>\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.header }}</span>\n <p-sortIcon [field]=\"col.field\"></p-sortIcon>\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 *ngFor=\"let column of getGridColumns()\" (click)=\"selection = [rowData]\">\n <span>{{ rowData[ column.field ] }}</span>\n </td>\n </tr>\n </ng-template>\n <ng-template pTemplate=\"paginatorright\">\n <span [translate]=\"'total_records'\" [translateParams]=\"{ value: documentTotalRecords }\"></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 </register-document> \n <insert-key [wmsSystem]=\"wmsSystem\" \n (document)=\"onChangeDocument($event)\" [(visible)]=\"visibleInvoiceKey\"></insert-key>\n </p-panel>\n</div>\n <div class=\"button-save\">\n <s-button \n priority=\"primary\" [label]=\"'save' | translate\" [disabled]=\"disabled || !this.gridData\" (click)=\"save()\">\n </s-button>\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 </register-document> \n <insert-key [wmsSystem]=\"wmsSystem\" \n (document)=\"onChangeDocument($event)\" [(visible)]=\"visibleInvoiceKey\"></insert-key>\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 >\n </s-empty-state>\n </div>\n</ng-template>",
|
|
3397
3424
|
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}"]
|
|
3398
3425
|
}),
|
|
3399
3426
|
__metadata("design:paramtypes", [core$1.TranslateService,
|
|
@@ -3446,130 +3473,11 @@
|
|
|
3446
3473
|
return Document;
|
|
3447
3474
|
}());
|
|
3448
3475
|
|
|
3449
|
-
var EntityService$1 = /** @class */ (function () {
|
|
3450
|
-
function EntityService(http, messageService, entityUrl, actionsUrl) {
|
|
3451
|
-
this.http = http;
|
|
3452
|
-
this.messageService = messageService;
|
|
3453
|
-
this.entityUrl = entityUrl;
|
|
3454
|
-
this.actionsUrl = actionsUrl;
|
|
3455
|
-
this.http = http;
|
|
3456
|
-
this.messageService = messageService;
|
|
3457
|
-
this.entityUrl = entityUrl;
|
|
3458
|
-
this.actionsUrl = actionsUrl;
|
|
3459
|
-
this.defaultCatch = this.defaultCatch.bind(this);
|
|
3460
|
-
}
|
|
3461
|
-
EntityService.prototype.getListQueryParams = function (listParams) {
|
|
3462
|
-
var _a = listParams.page, page = _a === void 0 ? 0 : _a, _b = listParams.size, size = _b === void 0 ? 10 : _b, _c = listParams.sort, sort = _c === void 0 ? [] : _c, _d = listParams.filterQuery, filterQuery = _d === void 0 ? "" : _d, _e = listParams.displayFields, displayFields = _e === void 0 ? [] : _e;
|
|
3463
|
-
var params = new http.HttpParams();
|
|
3464
|
-
params = params.append("size", String(size));
|
|
3465
|
-
params = params.append("offset", String(page));
|
|
3466
|
-
if (sort && sort.length) {
|
|
3467
|
-
params = params.append("orderby", sort
|
|
3468
|
-
.map(function (s) {
|
|
3469
|
-
var order = "";
|
|
3470
|
-
if (s.order === 1)
|
|
3471
|
-
order = " asc";
|
|
3472
|
-
else if (s.order === -1)
|
|
3473
|
-
order = " desc";
|
|
3474
|
-
return "" + s.field + order;
|
|
3475
|
-
})
|
|
3476
|
-
.join(", "));
|
|
3477
|
-
}
|
|
3478
|
-
if (filterQuery)
|
|
3479
|
-
params = params.append("filter", filterQuery);
|
|
3480
|
-
if (displayFields && displayFields.length)
|
|
3481
|
-
params = params.append("displayfields", displayFields.join());
|
|
3482
|
-
return params;
|
|
3483
|
-
};
|
|
3484
|
-
EntityService.prototype.getBodyParams = function (listParams) {
|
|
3485
|
-
var _a = listParams.page, page = _a === void 0 ? 0 : _a, _b = listParams.size, size = _b === void 0 ? 10 : _b, _c = listParams.sort, sort = _c === void 0 ? [] : _c, _d = listParams.filterQuery, filterQuery = _d === void 0 ? "" : _d, _e = listParams.displayFields, displayFields = _e === void 0 ? [] : _e;
|
|
3486
|
-
var bodyParams = {};
|
|
3487
|
-
bodyParams.size = size;
|
|
3488
|
-
bodyParams.offset = page;
|
|
3489
|
-
if (sort && sort.length) {
|
|
3490
|
-
bodyParams.orderBy = sort
|
|
3491
|
-
.map(function (s) {
|
|
3492
|
-
var order = "";
|
|
3493
|
-
if (s.order === 1)
|
|
3494
|
-
order = " asc";
|
|
3495
|
-
else if (s.order === -1)
|
|
3496
|
-
order = " desc";
|
|
3497
|
-
return "" + s.field + order;
|
|
3498
|
-
})
|
|
3499
|
-
.join(", ");
|
|
3500
|
-
}
|
|
3501
|
-
if (filterQuery)
|
|
3502
|
-
bodyParams.filter = filterQuery;
|
|
3503
|
-
if (displayFields && displayFields.length)
|
|
3504
|
-
bodyParams.displayfields = displayFields.join();
|
|
3505
|
-
return bodyParams;
|
|
3506
|
-
};
|
|
3507
|
-
EntityService.prototype.defaultCatch = function () {
|
|
3508
|
-
var _this = this;
|
|
3509
|
-
return operators.catchError(function (err) {
|
|
3510
|
-
if (err) {
|
|
3511
|
-
var summary = err.status ? String(err.status) : "Error";
|
|
3512
|
-
var detail = (err.error && err.error.message) || err.statusText || err.message || "Error";
|
|
3513
|
-
_this.messageService.add({
|
|
3514
|
-
severity: "error",
|
|
3515
|
-
summary: summary,
|
|
3516
|
-
detail: detail,
|
|
3517
|
-
});
|
|
3518
|
-
}
|
|
3519
|
-
return rxjs.throwError(err);
|
|
3520
|
-
});
|
|
3521
|
-
};
|
|
3522
|
-
EntityService.prototype.list = function (listParams) {
|
|
3523
|
-
return this.http.get(this.entityUrl, { params: this.getListQueryParams(listParams) }).pipe(this.defaultCatch());
|
|
3524
|
-
};
|
|
3525
|
-
EntityService.prototype.get = function (id) {
|
|
3526
|
-
return this.http.get(this.entityUrl + "/" + id).pipe(this.defaultCatch());
|
|
3527
|
-
};
|
|
3528
|
-
EntityService.prototype.insert = function (entity) {
|
|
3529
|
-
return this.http.post("" + this.entityUrl, entity).pipe(this.defaultCatch());
|
|
3530
|
-
};
|
|
3531
|
-
EntityService.prototype.update = function (id, entity) {
|
|
3532
|
-
return this.http.put(this.entityUrl + "/" + id, entity).pipe(this.defaultCatch());
|
|
3533
|
-
};
|
|
3534
|
-
EntityService.prototype.delete = function (id) {
|
|
3535
|
-
return this.http.delete(this.entityUrl + "/" + id).pipe(this.defaultCatch());
|
|
3536
|
-
};
|
|
3537
|
-
EntityService.prototype.listCustomFilter = function (listParams, action) {
|
|
3538
|
-
return this.http.post(this.actionsUrl + "/" + action, this.getBodyParams(listParams)).pipe(this.defaultCatch());
|
|
3539
|
-
};
|
|
3540
|
-
return EntityService;
|
|
3541
|
-
}());
|
|
3542
|
-
|
|
3543
|
-
var EntityService$2 = /** @class */ (function (_super) {
|
|
3544
|
-
__extends(EntityService, _super);
|
|
3545
|
-
function EntityService() {
|
|
3546
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
3547
|
-
}
|
|
3548
|
-
return EntityService;
|
|
3549
|
-
}(EntityService$1));
|
|
3550
|
-
|
|
3551
|
-
var AgendaService = /** @class */ (function (_super) {
|
|
3552
|
-
__extends(AgendaService, _super);
|
|
3553
|
-
function AgendaService(http, messageService) {
|
|
3554
|
-
var _this = _super.call(this, http, messageService, 'yms/agenda/entities/agenda', '') || this;
|
|
3555
|
-
_this.http = http;
|
|
3556
|
-
_this.messageService = messageService;
|
|
3557
|
-
return _this;
|
|
3558
|
-
}
|
|
3559
|
-
AgendaService.ngInjectableDef = core.defineInjectable({ factory: function AgendaService_Factory() { return new AgendaService(core.inject(http.HttpClient), core.inject(messageservice.MessageService)); }, token: AgendaService, providedIn: "root" });
|
|
3560
|
-
AgendaService = __decorate([
|
|
3561
|
-
core.Injectable({ providedIn: 'root' }),
|
|
3562
|
-
__metadata("design:paramtypes", [http.HttpClient, messageservice.MessageService])
|
|
3563
|
-
], AgendaService);
|
|
3564
|
-
return AgendaService;
|
|
3565
|
-
}(EntityService$2));
|
|
3566
|
-
|
|
3567
3476
|
var RegisterDocumentComponent = /** @class */ (function () {
|
|
3568
|
-
function RegisterDocumentComponent(fb, messageService, translateService
|
|
3477
|
+
function RegisterDocumentComponent(fb, messageService, translateService) {
|
|
3569
3478
|
this.fb = fb;
|
|
3570
3479
|
this.messageService = messageService;
|
|
3571
3480
|
this.translateService = translateService;
|
|
3572
|
-
this.agendaService = agendaService;
|
|
3573
3481
|
this.document = new core.EventEmitter();
|
|
3574
3482
|
this.visible = new core.EventEmitter();
|
|
3575
3483
|
this.visibleChange = new core.EventEmitter();
|
|
@@ -3584,13 +3492,11 @@
|
|
|
3584
3492
|
if (!this.edit && this.visible) {
|
|
3585
3493
|
this.formGroup.disable();
|
|
3586
3494
|
this.setValuesFormGroup(this.viewDocument[0]);
|
|
3587
|
-
this.setValueForPartner();
|
|
3588
3495
|
this.hideSaveButton = true;
|
|
3589
3496
|
return this.visible;
|
|
3590
3497
|
}
|
|
3591
3498
|
if (this.formGroup !== undefined) {
|
|
3592
3499
|
this.formGroup.enable();
|
|
3593
|
-
this.setValueForPartner();
|
|
3594
3500
|
this.hideSaveButton = false;
|
|
3595
3501
|
}
|
|
3596
3502
|
};
|
|
@@ -3607,16 +3513,11 @@
|
|
|
3607
3513
|
this.formGroup.get('logistcUnitName').setValue(document.logistcUnitName);
|
|
3608
3514
|
this.formGroup.get('notes').setValue(document.notes);
|
|
3609
3515
|
this.formGroup.get('code').setValue(document.code);
|
|
3516
|
+
this.formGroup.get('partnerName').setValue(document.partnerName);
|
|
3517
|
+
this.formGroup.get('partnerDocument').setValue(document.partnerDocument);
|
|
3610
3518
|
this.formGroup.get('ownerDocument').setValue(document.ownerDocument);
|
|
3611
3519
|
this.formGroup.get('ownerName').setValue(document.ownerName);
|
|
3612
3520
|
};
|
|
3613
|
-
RegisterDocumentComponent.prototype.setValueForPartner = function () {
|
|
3614
|
-
var _this = this;
|
|
3615
|
-
this.agendaService.get(this.agenda.id).subscribe(function (agenda) {
|
|
3616
|
-
_this.formGroup.get('partnerName').setValue(agenda.externalTenant.descricao);
|
|
3617
|
-
_this.formGroup.get('partnerDocument').setValue(agenda.externalTenant.cnpj);
|
|
3618
|
-
});
|
|
3619
|
-
};
|
|
3620
3521
|
RegisterDocumentComponent.prototype.getFormGroup = function () {
|
|
3621
3522
|
this.formGroup = this.fb.group({
|
|
3622
3523
|
key: [undefined, forms.Validators.required],
|
|
@@ -3699,8 +3600,7 @@
|
|
|
3699
3600
|
}),
|
|
3700
3601
|
__metadata("design:paramtypes", [forms.FormBuilder,
|
|
3701
3602
|
api.MessageService,
|
|
3702
|
-
core$1.TranslateService
|
|
3703
|
-
AgendaService])
|
|
3603
|
+
core$1.TranslateService])
|
|
3704
3604
|
], RegisterDocumentComponent);
|
|
3705
3605
|
return RegisterDocumentComponent;
|
|
3706
3606
|
}());
|
|
@@ -3810,7 +3710,7 @@
|
|
|
3810
3710
|
InsertKeyComponent = __decorate([
|
|
3811
3711
|
core.Component({
|
|
3812
3712
|
selector: "insert-key",
|
|
3813
|
-
template: "<form [formGroup]=\"formGroup\">\n <p-dialog [(visible)]=\"visible\" [modal]=\"true\" (visibleChange)=\"cancel()\">\n <p-header>{{'yms.int.wms_search_document' | translate}} {{ wmsSystem }}</p-header>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" \n *ngIf=\"!isWmsSeniorConnect() && !isWmsWis()\">\n <label for=\"key\">{{'yms.int.wms_insert_key_label' | translate}}</label>\n <input id=\"key\" class=\"size-input\" pInputText type=\"text\" formControlName=\"key\">\n </div>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" *ngIf=\"isWmsSeniorConnect()\">\n <label for=\"purchaseOrder\">{{'yms.int.wms_purchaseOrder' | translate}} </label>\n <input id=\"purchaseOrder\" class=\"size-input\" pInputText type=\"text\" formControlName=\"purchaseOrder\">\n </div>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" *ngIf=\"isWmsWis()\">\n <label for=\"invoiceNumber\">{{'yms.int.wms_invoice_number' | translate}}</label>\n <input id=\"invoiceNumber\" class=\"size-input\" pInputText type=\"text\" formControlName=\"invoiceNumber\">\n </div>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" *ngIf=\"isWmsWis()\">\n <label for=\"invoiceSerie\">{{'yms.int.wms_invoice_serie' | translate}}</label>\n <input id=\"invoiceSerie\" class=\"size-input\" pInputText type=\"text\" formControlName=\"invoiceSerie\">\n </div>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" *ngIf=\"isWmsWis()\">\n <label for=\"partnerDocument\">{{'yms.int.wms_partner_document' | translate}}</label>\n <input id=\"partnerDocument\" class=\"size-input\" pInputText type=\"text\" formControlName=\"partnerDocument\">\n </div>\n <div class=\"separator\"></div>\n <div class=\"spacing-top\">\n <s-button pButton label=\"{{'
|
|
3713
|
+
template: "<form [formGroup]=\"formGroup\">\n <p-dialog [(visible)]=\"visible\" [modal]=\"true\" [draggable]=\"false\" (visibleChange)=\"cancel()\">\n <p-header>{{'yms.int.wms_search_document' | translate}} {{ wmsSystem }}</p-header>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" \n *ngIf=\"!isWmsSeniorConnect() && !isWmsWis()\">\n <label for=\"key\">{{'yms.int.wms_insert_key_label' | translate}}</label>\n <input id=\"key\" class=\"size-input\" pInputText type=\"text\" formControlName=\"key\">\n </div>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" *ngIf=\"isWmsSeniorConnect()\">\n <label for=\"purchaseOrder\">{{'yms.int.wms_purchaseOrder' | translate}} </label>\n <input id=\"purchaseOrder\" class=\"size-input\" pInputText type=\"text\" formControlName=\"purchaseOrder\">\n </div>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" *ngIf=\"isWmsWis()\">\n <label for=\"invoiceNumber\">{{'yms.int.wms_invoice_number' | translate}}</label>\n <input id=\"invoiceNumber\" class=\"size-input\" pInputText type=\"text\" formControlName=\"invoiceNumber\">\n </div>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" *ngIf=\"isWmsWis()\">\n <label for=\"invoiceSerie\">{{'yms.int.wms_invoice_serie' | translate}}</label>\n <input id=\"invoiceSerie\" class=\"size-input\" pInputText type=\"text\" formControlName=\"invoiceSerie\">\n </div>\n <div class=\"flex py-2 justify-content-center spacing-bottom\" *ngIf=\"isWmsWis()\">\n <label for=\"partnerDocument\">{{'yms.int.wms_partner_document' | translate}}</label>\n <input id=\"partnerDocument\" class=\"size-input\" pInputText type=\"text\" formControlName=\"partnerDocument\">\n </div>\n <div class=\"separator\"></div>\n <div class=\"spacing-top\">\n <s-button pButton label=\"{{'yms.int.wms_search' | translate}}\" (click)=\"add()\"></s-button>\n <s-button\n type=\"button\"\n class=\"ui-button-link\"\n pButton label=\"{{'cancel' | translate}}\"\n (click)=\"cancel()\">\n </s-button>\n </div>\n </p-dialog>\n</form>",
|
|
3814
3714
|
styles: [".spacing-top{margin-top:10px}.spacing-bottom{margin-bottom:10px}.separator{width:100%;margin:5px 0;height:1px;background-color:#ccc}.size-input{width:480px}"]
|
|
3815
3715
|
}),
|
|
3816
3716
|
__metadata("design:paramtypes", [forms.FormBuilder,
|
|
@@ -3918,9 +3818,103 @@
|
|
|
3918
3818
|
return WmsModule;
|
|
3919
3819
|
}());
|
|
3920
3820
|
|
|
3821
|
+
var EntityService$1 = /** @class */ (function () {
|
|
3822
|
+
function EntityService(http, messageService, entityUrl, actionsUrl) {
|
|
3823
|
+
this.http = http;
|
|
3824
|
+
this.messageService = messageService;
|
|
3825
|
+
this.entityUrl = entityUrl;
|
|
3826
|
+
this.actionsUrl = actionsUrl;
|
|
3827
|
+
this.http = http;
|
|
3828
|
+
this.messageService = messageService;
|
|
3829
|
+
this.entityUrl = entityUrl;
|
|
3830
|
+
this.actionsUrl = actionsUrl;
|
|
3831
|
+
this.defaultCatch = this.defaultCatch.bind(this);
|
|
3832
|
+
}
|
|
3833
|
+
EntityService.prototype.getListQueryParams = function (listParams) {
|
|
3834
|
+
var _a = listParams.page, page = _a === void 0 ? 0 : _a, _b = listParams.size, size = _b === void 0 ? 10 : _b, _c = listParams.sort, sort = _c === void 0 ? [] : _c, _d = listParams.filterQuery, filterQuery = _d === void 0 ? "" : _d, _e = listParams.displayFields, displayFields = _e === void 0 ? [] : _e;
|
|
3835
|
+
var params = new http.HttpParams();
|
|
3836
|
+
params = params.append("size", String(size));
|
|
3837
|
+
params = params.append("offset", String(page));
|
|
3838
|
+
if (sort && sort.length) {
|
|
3839
|
+
params = params.append("orderby", sort
|
|
3840
|
+
.map(function (s) {
|
|
3841
|
+
var order = "";
|
|
3842
|
+
if (s.order === 1)
|
|
3843
|
+
order = " asc";
|
|
3844
|
+
else if (s.order === -1)
|
|
3845
|
+
order = " desc";
|
|
3846
|
+
return "" + s.field + order;
|
|
3847
|
+
})
|
|
3848
|
+
.join(", "));
|
|
3849
|
+
}
|
|
3850
|
+
if (filterQuery)
|
|
3851
|
+
params = params.append("filter", filterQuery);
|
|
3852
|
+
if (displayFields && displayFields.length)
|
|
3853
|
+
params = params.append("displayfields", displayFields.join());
|
|
3854
|
+
return params;
|
|
3855
|
+
};
|
|
3856
|
+
EntityService.prototype.getBodyParams = function (listParams) {
|
|
3857
|
+
var _a = listParams.page, page = _a === void 0 ? 0 : _a, _b = listParams.size, size = _b === void 0 ? 10 : _b, _c = listParams.sort, sort = _c === void 0 ? [] : _c, _d = listParams.filterQuery, filterQuery = _d === void 0 ? "" : _d, _e = listParams.displayFields, displayFields = _e === void 0 ? [] : _e;
|
|
3858
|
+
var bodyParams = {};
|
|
3859
|
+
bodyParams.size = size;
|
|
3860
|
+
bodyParams.offset = page;
|
|
3861
|
+
if (sort && sort.length) {
|
|
3862
|
+
bodyParams.orderBy = sort
|
|
3863
|
+
.map(function (s) {
|
|
3864
|
+
var order = "";
|
|
3865
|
+
if (s.order === 1)
|
|
3866
|
+
order = " asc";
|
|
3867
|
+
else if (s.order === -1)
|
|
3868
|
+
order = " desc";
|
|
3869
|
+
return "" + s.field + order;
|
|
3870
|
+
})
|
|
3871
|
+
.join(", ");
|
|
3872
|
+
}
|
|
3873
|
+
if (filterQuery)
|
|
3874
|
+
bodyParams.filter = filterQuery;
|
|
3875
|
+
if (displayFields && displayFields.length)
|
|
3876
|
+
bodyParams.displayfields = displayFields.join();
|
|
3877
|
+
return bodyParams;
|
|
3878
|
+
};
|
|
3879
|
+
EntityService.prototype.defaultCatch = function () {
|
|
3880
|
+
var _this = this;
|
|
3881
|
+
return operators.catchError(function (err) {
|
|
3882
|
+
if (err) {
|
|
3883
|
+
var summary = err.status ? String(err.status) : "Error";
|
|
3884
|
+
var detail = (err.error && err.error.message) || err.statusText || err.message || "Error";
|
|
3885
|
+
_this.messageService.add({
|
|
3886
|
+
severity: "error",
|
|
3887
|
+
summary: summary,
|
|
3888
|
+
detail: detail,
|
|
3889
|
+
});
|
|
3890
|
+
}
|
|
3891
|
+
return rxjs.throwError(err);
|
|
3892
|
+
});
|
|
3893
|
+
};
|
|
3894
|
+
EntityService.prototype.list = function (listParams) {
|
|
3895
|
+
return this.http.get(this.entityUrl, { params: this.getListQueryParams(listParams) }).pipe(this.defaultCatch());
|
|
3896
|
+
};
|
|
3897
|
+
EntityService.prototype.get = function (id) {
|
|
3898
|
+
return this.http.get(this.entityUrl + "/" + id).pipe(this.defaultCatch());
|
|
3899
|
+
};
|
|
3900
|
+
EntityService.prototype.insert = function (entity) {
|
|
3901
|
+
return this.http.post("" + this.entityUrl, entity).pipe(this.defaultCatch());
|
|
3902
|
+
};
|
|
3903
|
+
EntityService.prototype.update = function (id, entity) {
|
|
3904
|
+
return this.http.put(this.entityUrl + "/" + id, entity).pipe(this.defaultCatch());
|
|
3905
|
+
};
|
|
3906
|
+
EntityService.prototype.delete = function (id) {
|
|
3907
|
+
return this.http.delete(this.entityUrl + "/" + id).pipe(this.defaultCatch());
|
|
3908
|
+
};
|
|
3909
|
+
EntityService.prototype.listCustomFilter = function (listParams, action) {
|
|
3910
|
+
return this.http.post(this.actionsUrl + "/" + action, this.getBodyParams(listParams)).pipe(this.defaultCatch());
|
|
3911
|
+
};
|
|
3912
|
+
return EntityService;
|
|
3913
|
+
}());
|
|
3914
|
+
|
|
3921
3915
|
var ERP_ENVIRONMENT = new core.InjectionToken('integration_environment');
|
|
3922
3916
|
|
|
3923
|
-
var AgendaService
|
|
3917
|
+
var AgendaService = /** @class */ (function (_super) {
|
|
3924
3918
|
__extends(AgendaService, _super);
|
|
3925
3919
|
function AgendaService(http, messageService, environment) {
|
|
3926
3920
|
var _this = _super.call(this, http, messageService, environment.project.domain + "/" + environment.project.service + "/entities/agenda", environment.project.domain + "/" + environment.project.service + "/actions") || this;
|
|
@@ -4021,7 +4015,7 @@
|
|
|
4021
4015
|
RecebimentoChegadaVeiculoOverride = __decorate([
|
|
4022
4016
|
core.Injectable(),
|
|
4023
4017
|
__metadata("design:paramtypes", [ymsRoutines.ChegadaVeiculoOverride,
|
|
4024
|
-
AgendaService
|
|
4018
|
+
AgendaService,
|
|
4025
4019
|
RecebimentoContratoService])
|
|
4026
4020
|
], RecebimentoChegadaVeiculoOverride);
|
|
4027
4021
|
return RecebimentoChegadaVeiculoOverride;
|
|
@@ -4085,7 +4079,7 @@
|
|
|
4085
4079
|
ExpedicaoChegadaVeiculoOverride = __decorate([
|
|
4086
4080
|
core.Injectable(),
|
|
4087
4081
|
__metadata("design:paramtypes", [ymsRoutines.ChegadaVeiculoOverride,
|
|
4088
|
-
AgendaService
|
|
4082
|
+
AgendaService,
|
|
4089
4083
|
ExpedicaoService])
|
|
4090
4084
|
], ExpedicaoChegadaVeiculoOverride);
|
|
4091
4085
|
return ExpedicaoChegadaVeiculoOverride;
|
|
@@ -5132,7 +5126,7 @@
|
|
|
5132
5126
|
]),
|
|
5133
5127
|
],
|
|
5134
5128
|
providers: [
|
|
5135
|
-
AgendaService
|
|
5129
|
+
AgendaService,
|
|
5136
5130
|
],
|
|
5137
5131
|
declarations: [
|
|
5138
5132
|
/*{CA:MODULE_DECLARATIONS:START}*/
|
|
@@ -6999,7 +6993,7 @@
|
|
|
6999
6993
|
DevolucaoChegadaVeiculoOverride = __decorate([
|
|
7000
6994
|
core.Injectable(),
|
|
7001
6995
|
__metadata("design:paramtypes", [ymsRoutines.ChegadaVeiculoOverride,
|
|
7002
|
-
AgendaService
|
|
6996
|
+
AgendaService,
|
|
7003
6997
|
DevolucaoService])
|
|
7004
6998
|
], DevolucaoChegadaVeiculoOverride);
|
|
7005
6999
|
return DevolucaoChegadaVeiculoOverride;
|
|
@@ -7964,7 +7958,7 @@
|
|
|
7964
7958
|
router.ActivatedRoute,
|
|
7965
7959
|
DevolucaoChegadaVeiculoOverride,
|
|
7966
7960
|
api.ConfirmationService,
|
|
7967
|
-
AgendaService
|
|
7961
|
+
AgendaService,
|
|
7968
7962
|
ErpProcessService,
|
|
7969
7963
|
ErpFormConfigService,
|
|
7970
7964
|
HasChangeService])
|
|
@@ -9545,7 +9539,7 @@
|
|
|
9545
9539
|
TransportadoraService,
|
|
9546
9540
|
PedidoVendaService,
|
|
9547
9541
|
PedidoVendaItemService,
|
|
9548
|
-
AgendaService
|
|
9542
|
+
AgendaService,
|
|
9549
9543
|
ExpedicaoChegadaVeiculoOverride,
|
|
9550
9544
|
api.ConfirmationService,
|
|
9551
9545
|
ErpProcessService,
|
|
@@ -9826,7 +9820,7 @@
|
|
|
9826
9820
|
ProcessoAvulsoChegadaVeiculoOverride = __decorate([
|
|
9827
9821
|
core.Injectable(),
|
|
9828
9822
|
__metadata("design:paramtypes", [ymsRoutines.ChegadaVeiculoOverride,
|
|
9829
|
-
AgendaService
|
|
9823
|
+
AgendaService,
|
|
9830
9824
|
ProcessoAvulsoService])
|
|
9831
9825
|
], ProcessoAvulsoChegadaVeiculoOverride);
|
|
9832
9826
|
return ProcessoAvulsoChegadaVeiculoOverride;
|
|
@@ -10132,7 +10126,7 @@
|
|
|
10132
10126
|
ProcessoAvulsoChegadaVeiculoOverride,
|
|
10133
10127
|
core$1.TranslateService,
|
|
10134
10128
|
api.ConfirmationService,
|
|
10135
|
-
AgendaService
|
|
10129
|
+
AgendaService,
|
|
10136
10130
|
ErpProcessService,
|
|
10137
10131
|
ErpFormConfigService,
|
|
10138
10132
|
HasChangeService])
|
|
@@ -10321,7 +10315,7 @@
|
|
|
10321
10315
|
RecebimentoOrdemCompraChegadaVeiculoOverride = __decorate([
|
|
10322
10316
|
core.Injectable(),
|
|
10323
10317
|
__metadata("design:paramtypes", [ymsRoutines.ChegadaVeiculoOverride,
|
|
10324
|
-
AgendaService
|
|
10318
|
+
AgendaService,
|
|
10325
10319
|
RecebimentoOrdemCompraService])
|
|
10326
10320
|
], RecebimentoOrdemCompraChegadaVeiculoOverride);
|
|
10327
10321
|
return RecebimentoOrdemCompraChegadaVeiculoOverride;
|
|
@@ -11502,7 +11496,7 @@
|
|
|
11502
11496
|
NotaValidatorService,
|
|
11503
11497
|
api.ConfirmationService,
|
|
11504
11498
|
api.DialogService,
|
|
11505
|
-
AgendaService
|
|
11499
|
+
AgendaService,
|
|
11506
11500
|
ErpProcessService,
|
|
11507
11501
|
ErpFormConfigService,
|
|
11508
11502
|
VerificaNotafiscal,
|
|
@@ -13849,7 +13843,7 @@
|
|
|
13849
13843
|
NotaValidatorService,
|
|
13850
13844
|
TransgeniaService,
|
|
13851
13845
|
api.DialogService,
|
|
13852
|
-
AgendaService
|
|
13846
|
+
AgendaService,
|
|
13853
13847
|
ErpProcessService,
|
|
13854
13848
|
ErpFormConfigService,
|
|
13855
13849
|
VerificaNotafiscal,
|
|
@@ -14015,7 +14009,7 @@
|
|
|
14015
14009
|
}());
|
|
14016
14010
|
|
|
14017
14011
|
exports.AgendaModule = AgendaModule;
|
|
14018
|
-
exports.AgendaService = AgendaService
|
|
14012
|
+
exports.AgendaService = AgendaService;
|
|
14019
14013
|
exports.BalancaModule = BalancaModule;
|
|
14020
14014
|
exports.BalancasService = BalancasService;
|
|
14021
14015
|
exports.CamerasModule = CamerasModule;
|
|
@@ -14110,51 +14104,49 @@
|
|
|
14110
14104
|
exports.ɵa = Service;
|
|
14111
14105
|
exports.ɵb = CustomStompConfig;
|
|
14112
14106
|
exports.ɵba = RegisterDocumentComponent;
|
|
14113
|
-
exports.ɵbb =
|
|
14114
|
-
exports.ɵbc =
|
|
14107
|
+
exports.ɵbb = InsertKeyModule;
|
|
14108
|
+
exports.ɵbc = InsertKeyComponent;
|
|
14115
14109
|
exports.ɵbd = EntityService$1;
|
|
14116
|
-
exports.ɵbe =
|
|
14117
|
-
exports.ɵbf =
|
|
14118
|
-
exports.ɵbg =
|
|
14119
|
-
exports.ɵbh =
|
|
14120
|
-
exports.ɵbi =
|
|
14121
|
-
exports.ɵbj =
|
|
14122
|
-
exports.ɵbk =
|
|
14123
|
-
exports.ɵbl =
|
|
14124
|
-
exports.ɵbm =
|
|
14125
|
-
exports.ɵbn =
|
|
14126
|
-
exports.ɵbo =
|
|
14127
|
-
exports.ɵbp =
|
|
14128
|
-
exports.ɵbq =
|
|
14129
|
-
exports.ɵbr =
|
|
14130
|
-
exports.ɵbs =
|
|
14131
|
-
exports.ɵbt =
|
|
14132
|
-
exports.ɵbu =
|
|
14133
|
-
exports.ɵbv =
|
|
14134
|
-
exports.ɵbw =
|
|
14135
|
-
exports.ɵbx =
|
|
14136
|
-
exports.ɵby =
|
|
14137
|
-
exports.ɵbz =
|
|
14110
|
+
exports.ɵbe = IntegrationService$1;
|
|
14111
|
+
exports.ɵbf = RecebimentoFormComponent;
|
|
14112
|
+
exports.ɵbg = DerivacaoService;
|
|
14113
|
+
exports.ɵbh = NotaValidatorService;
|
|
14114
|
+
exports.ɵbi = TransgeniaService;
|
|
14115
|
+
exports.ɵbj = VerificaNotafiscal;
|
|
14116
|
+
exports.ɵbk = BuildFormField;
|
|
14117
|
+
exports.ɵbl = ExpedicaoFormComponent;
|
|
14118
|
+
exports.ɵbm = ExpedicaoInfoComponent;
|
|
14119
|
+
exports.ɵbn = RecebimentoInfoComponent;
|
|
14120
|
+
exports.ɵbo = DevolucaoFormComponent;
|
|
14121
|
+
exports.ɵbp = DevolucaoService;
|
|
14122
|
+
exports.ɵbq = DevolucaoChegadaVeiculoOverride;
|
|
14123
|
+
exports.ɵbr = RecebimentoOrdemCompraFormComponent;
|
|
14124
|
+
exports.ɵbs = OrdemCompraService;
|
|
14125
|
+
exports.ɵbt = RecebimentoOrdemCompraService;
|
|
14126
|
+
exports.ɵbu = RecebimentoOrdemCompraChegadaVeiculoOverride;
|
|
14127
|
+
exports.ɵbv = RecebimentoOrdemCompraInfoComponent;
|
|
14128
|
+
exports.ɵbw = DevolucaoInfoComponent;
|
|
14129
|
+
exports.ɵbx = ContratoFormComponent;
|
|
14130
|
+
exports.ɵby = OrdemCompraFormComponent;
|
|
14131
|
+
exports.ɵbz = ProcessoAvulsoFormComponent;
|
|
14138
14132
|
exports.ɵc = ViewImageComponent;
|
|
14139
|
-
exports.ɵca =
|
|
14140
|
-
exports.ɵcb =
|
|
14141
|
-
exports.ɵcc =
|
|
14142
|
-
exports.ɵcd =
|
|
14143
|
-
exports.ɵce =
|
|
14144
|
-
exports.ɵcf =
|
|
14145
|
-
exports.ɵcg =
|
|
14146
|
-
exports.ɵch =
|
|
14147
|
-
exports.ɵci =
|
|
14148
|
-
exports.ɵcj =
|
|
14149
|
-
exports.ɵck =
|
|
14150
|
-
exports.ɵcl =
|
|
14151
|
-
exports.ɵcm =
|
|
14152
|
-
exports.ɵcn =
|
|
14153
|
-
exports.ɵco =
|
|
14154
|
-
exports.ɵcp =
|
|
14155
|
-
exports.ɵcq =
|
|
14156
|
-
exports.ɵcr = TrimDirective;
|
|
14157
|
-
exports.ɵcs = NotaFormComponent;
|
|
14133
|
+
exports.ɵca = ProcessoAvulsoService;
|
|
14134
|
+
exports.ɵcb = ProcessoAvulsoChegadaVeiculoOverride;
|
|
14135
|
+
exports.ɵcc = ProcessoAvulsoInfoComponent;
|
|
14136
|
+
exports.ɵcd = LogIntegracaoDescritor;
|
|
14137
|
+
exports.ɵce = LogIntegracaoComponent;
|
|
14138
|
+
exports.ɵcf = LogIntegracaoService;
|
|
14139
|
+
exports.ɵcg = DerivacaoModule;
|
|
14140
|
+
exports.ɵch = DevolucaoModule;
|
|
14141
|
+
exports.ɵci = OrdemCompraModule;
|
|
14142
|
+
exports.ɵcj = RecebimentoOrdemCompraModule;
|
|
14143
|
+
exports.ɵck = TransgeniaModule;
|
|
14144
|
+
exports.ɵcl = ProcessoAvulsoModule;
|
|
14145
|
+
exports.ɵcm = LogIntegracaoModule;
|
|
14146
|
+
exports.ɵcn = NotaFormModule;
|
|
14147
|
+
exports.ɵco = DirectivesModule;
|
|
14148
|
+
exports.ɵcp = TrimDirective;
|
|
14149
|
+
exports.ɵcq = NotaFormComponent;
|
|
14158
14150
|
exports.ɵd = LogDescritor;
|
|
14159
14151
|
exports.ɵe = LogsComponent;
|
|
14160
14152
|
exports.ɵf = PortariasService;
|