@seniorsistemas/tmsx-angular-components 1.0.1 → 1.0.3-develop-193f5243
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-tmsx-angular-components.umd.js +56 -350
- package/bundles/seniorsistemas-tmsx-angular-components.umd.js.map +1 -1
- package/bundles/seniorsistemas-tmsx-angular-components.umd.min.js +1 -1
- package/bundles/seniorsistemas-tmsx-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/grid-editable-nested/grid-editable-nested.component.js +5 -5
- package/esm2015/components/painel-processamento/painel-processamento.component.js +4 -4
- package/esm2015/components/painel-processamento/processamento.js +5 -5
- package/esm2015/locale/fallback.js +37 -331
- package/esm2015/utils/services/utils.service.js +10 -10
- package/esm5/components/grid-editable-nested/grid-editable-nested.component.js +5 -5
- package/esm5/components/painel-processamento/painel-processamento.component.js +4 -4
- package/esm5/components/painel-processamento/processamento.js +5 -5
- package/esm5/locale/fallback.js +37 -331
- package/esm5/utils/services/utils.service.js +10 -10
- package/fesm2015/seniorsistemas-tmsx-angular-components.js +56 -350
- package/fesm2015/seniorsistemas-tmsx-angular-components.js.map +1 -1
- package/fesm5/seniorsistemas-tmsx-angular-components.js +56 -350
- package/fesm5/seniorsistemas-tmsx-angular-components.js.map +1 -1
- package/package.json +4 -4
- package/seniorsistemas-tmsx-angular-components.metadata.json +1 -1
|
@@ -234,10 +234,10 @@
|
|
|
234
234
|
EnumProcessamentoStatus["PROCESSING"] = "PROCESSING";
|
|
235
235
|
})(EnumProcessamentoStatus || (EnumProcessamentoStatus = {}));
|
|
236
236
|
var EnumProcessamentoStatusTranslationMap = (_a = {},
|
|
237
|
-
_a[EnumProcessamentoStatus.SUCCESS] = '
|
|
238
|
-
_a[EnumProcessamentoStatus.FAILED] = '
|
|
239
|
-
_a[EnumProcessamentoStatus.PENDING] = '
|
|
240
|
-
_a[EnumProcessamentoStatus.PROCESSING] = '
|
|
237
|
+
_a[EnumProcessamentoStatus.SUCCESS] = 'tmsx_fnd.tmsx_angular_components.painel_processamento_status_success',
|
|
238
|
+
_a[EnumProcessamentoStatus.FAILED] = 'tmsx_fnd.tmsx_angular_components.painel_processamento_status_failed',
|
|
239
|
+
_a[EnumProcessamentoStatus.PENDING] = 'tmsx_fnd.tmsx_angular_components.painel_processamento_status_pending',
|
|
240
|
+
_a[EnumProcessamentoStatus.PROCESSING] = 'tmsx_fnd.tmsx_angular_components.painel_processamento_status_processing',
|
|
241
241
|
_a);
|
|
242
242
|
|
|
243
243
|
var PainelProcessamentoComponent = /** @class */ (function () {
|
|
@@ -322,7 +322,7 @@
|
|
|
322
322
|
else {
|
|
323
323
|
this.failedCount = this.pendingCount;
|
|
324
324
|
this.pendingCount = 0;
|
|
325
|
-
this.updateRowStatus(row, EnumProcessamentoStatus.FAILED, this.translate.instant('
|
|
325
|
+
this.updateRowStatus(row, EnumProcessamentoStatus.FAILED, this.translate.instant('tmsx_fnd.tmsx_angular_components.painel_processamento_api_error'));
|
|
326
326
|
this.updateProgressBar();
|
|
327
327
|
this.concluido.emit('erro');
|
|
328
328
|
}
|
|
@@ -426,14 +426,14 @@
|
|
|
426
426
|
return [
|
|
427
427
|
{
|
|
428
428
|
field: 'label',
|
|
429
|
-
header: this.translate.instant('
|
|
429
|
+
header: this.translate.instant('tmsx_fnd.tmsx_angular_components.registro'),
|
|
430
430
|
style: { width: '50%' },
|
|
431
431
|
attributes: [],
|
|
432
432
|
type: angularComponents.EnumColumnFieldType.STRING
|
|
433
433
|
},
|
|
434
434
|
{
|
|
435
435
|
field: 'status',
|
|
436
|
-
header: this.translate.instant('
|
|
436
|
+
header: this.translate.instant('tmsx_fnd.tmsx_angular_components.status'),
|
|
437
437
|
style: { width: '50%' },
|
|
438
438
|
attributes: [],
|
|
439
439
|
type: angularComponents.EnumColumnFieldType.STRING
|
|
@@ -504,7 +504,7 @@
|
|
|
504
504
|
}
|
|
505
505
|
var date = '';
|
|
506
506
|
this.dataPipe.transform(createdDate).subscribe(function (item) { return date = item.split(' '); });
|
|
507
|
-
return this.translate.instant('
|
|
507
|
+
return this.translate.instant('tmsx_fnd.tmsx_angular_components.audit_created_by', { nome: createdBy, data: date[0], hora: date[1] });
|
|
508
508
|
};
|
|
509
509
|
UtilsService.prototype.getAuditModifiedBy = function (modifiedBy, modifiedDate) {
|
|
510
510
|
if (!modifiedBy || !modifiedDate) {
|
|
@@ -512,7 +512,7 @@
|
|
|
512
512
|
}
|
|
513
513
|
var date = '';
|
|
514
514
|
this.dataPipe.transform(modifiedDate).subscribe(function (item) { return date = item.split(' '); });
|
|
515
|
-
return this.translate.instant('
|
|
515
|
+
return this.translate.instant('tmsx_fnd.tmsx_angular_components.audit_modified_by', { nome: modifiedBy, data: date[0], hora: date[1] });
|
|
516
516
|
};
|
|
517
517
|
UtilsService.prototype.getAuditInactivatedBy = function (inactivatedBy, inactivatedDate) {
|
|
518
518
|
if (!inactivatedBy || !inactivatedDate) {
|
|
@@ -520,7 +520,7 @@
|
|
|
520
520
|
}
|
|
521
521
|
var date = '';
|
|
522
522
|
this.dataPipe.transform(inactivatedDate).subscribe(function (item) { return date = item.split(' '); });
|
|
523
|
-
return this.translate.instant('
|
|
523
|
+
return this.translate.instant('tmsx_fnd.tmsx_angular_components.audit_inactivated_by', { nome: inactivatedBy, data: date[0], hora: date[1] });
|
|
524
524
|
};
|
|
525
525
|
/* usage: [innerHTML]="getProp(rowData, 'nome')" */
|
|
526
526
|
UtilsService.prototype.getProp = function (obj, path, type) {
|
|
@@ -531,7 +531,7 @@
|
|
|
531
531
|
}
|
|
532
532
|
return "<span>" + value + "</span>";
|
|
533
533
|
}
|
|
534
|
-
return "<span class=\"empty-grid\">" + this.translate.instant('
|
|
534
|
+
return "<span class=\"empty-grid\">" + this.translate.instant('tmsx_fnd.tmsx_angular_components.list_grid_empty_field') + "</span>";
|
|
535
535
|
};
|
|
536
536
|
UtilsService.prototype.formatType = function (value, type) {
|
|
537
537
|
if (value) {
|
|
@@ -570,7 +570,7 @@
|
|
|
570
570
|
UtilsService.prototype.infoContent = function (entity) {
|
|
571
571
|
var text = '';
|
|
572
572
|
if (!entity) {
|
|
573
|
-
return this.translate.instant("
|
|
573
|
+
return this.translate.instant("tmsx_fnd.tmsx_angular_components.condicao_valor_lookup_condicional_no_audit");
|
|
574
574
|
}
|
|
575
575
|
text += this.getAuditCreatedBy(entity.createdBy, entity.createdDate);
|
|
576
576
|
if (text) {
|
|
@@ -586,8 +586,8 @@
|
|
|
586
586
|
var _a = formField, name = _a.name, type = _a.type, label = _a.label;
|
|
587
587
|
if (type === angularComponents.FieldType.Radio) {
|
|
588
588
|
var labelValue = value
|
|
589
|
-
? translate.instant('
|
|
590
|
-
: translate.instant('
|
|
589
|
+
? translate.instant('tmsx_fnd.tmsx_angular_components.situacao_ativo_true')
|
|
590
|
+
: translate.instant('tmsx_fnd.tmsx_angular_components.situacao_ativo_false');
|
|
591
591
|
return { id: name, label: label + ": " + labelValue };
|
|
592
592
|
}
|
|
593
593
|
return this.createFilterTokens(formField, value, translate);
|
|
@@ -633,8 +633,8 @@
|
|
|
633
633
|
};
|
|
634
634
|
UtilsService.prototype.getBooleanLabel = function (value, translate) {
|
|
635
635
|
return value
|
|
636
|
-
? translate.instant('
|
|
637
|
-
: translate.instant('
|
|
636
|
+
? translate.instant('tmsx_fnd.tmsx_angular_components.list_grid_boolean_true')
|
|
637
|
+
: translate.instant('tmsx_fnd.tmsx_angular_components.list_grid_boolean_false');
|
|
638
638
|
};
|
|
639
639
|
UtilsService.prototype.getTimeFromDate = function (value) {
|
|
640
640
|
var dateObj;
|
|
@@ -713,7 +713,7 @@
|
|
|
713
713
|
this.frozenWidth = '200px';
|
|
714
714
|
this.frozenColumns = [];
|
|
715
715
|
this.ngUnsubscribe = new rxjs.Subject();
|
|
716
|
-
this.calendarTooltipText = this.translate.instant('
|
|
716
|
+
this.calendarTooltipText = this.translate.instant('tmsx_fnd.tmsx_angular_components.grid_editable_nested_calendar_required');
|
|
717
717
|
}
|
|
718
718
|
GridEditableNestedComponent.prototype.ngOnInit = function () {
|
|
719
719
|
this.setGridData();
|
|
@@ -761,7 +761,7 @@
|
|
|
761
761
|
return [
|
|
762
762
|
{
|
|
763
763
|
id: 'edit',
|
|
764
|
-
label: this.translate.instant('
|
|
764
|
+
label: this.translate.instant('tmsx_fnd.tmsx_angular_components.edit'),
|
|
765
765
|
disabled: !this.detailsEnabled,
|
|
766
766
|
command: function () {
|
|
767
767
|
_this.openRowDetails(data.id);
|
|
@@ -770,7 +770,7 @@
|
|
|
770
770
|
{ separator: true },
|
|
771
771
|
{
|
|
772
772
|
id: 'delete',
|
|
773
|
-
label: this.translate.instant('
|
|
773
|
+
label: this.translate.instant('tmsx_fnd.tmsx_angular_components.delete'),
|
|
774
774
|
disabled: !this.deleteEnabled,
|
|
775
775
|
command: function () {
|
|
776
776
|
_this.onDelete(data.id);
|
|
@@ -947,7 +947,7 @@
|
|
|
947
947
|
}),
|
|
948
948
|
core$1.Component({
|
|
949
949
|
selector: 'tmsx-grid-editable-nested',
|
|
950
|
-
template: "<div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <s-button id=\"add-button\"\n data-cy=\"add-button\"\n priority=\"primary\" type=\"button\"\n [label]=\"'tmsx_com.tmsx_angular_components.add' | translate\"\n tooltip=\"{{'tmsx_com.tmsx_angular_components.add' | translate}} (Alt + Shift + N)\"\n [disabled]=\"!addEnabled\"\n (click)=\"onAdd()\">\n </s-button>\n <s-button\n *ngIf=\"!editing\"\n priority=\"primary\"\n iconClass=\"fa fa-edit\"\n label=\"{{'tmsx_com.tmsx_angular_components.grid_editable_nested_editar' | translate}}\"\n tooltip=\"{{'tmsx_com.tmsx_angular_components.grid_editable_nested_editar' | translate}}\"\n [disabled]=\"!editEnabled\"\n (click)=\"initAllRowsEdit()\"\n ></s-button>\n <s-button\n *ngIf=\"editing\"\n priority=\"primary\"\n label=\"{{'tmsx_com.tmsx_angular_components.grid_editable_nested_salvar' | translate}}\"\n iconClass=\"fa fa-check\"\n [disabled]=\"false\"\n (click)=\"onEditSave()\"\n ></s-button>\n <s-button\n *ngIf=\"editing\"\n priority=\"default\"\n label=\"{{'tmsx_com.tmsx_angular_components.grid_editable_nested_cancelar' | translate}}\"\n iconClass=\"fa fa-times\"\n [disabled]=\"false\"\n (click)=\"onEditCancel()\"\n ></s-button>\n <p-table\n selectionMode=\"single\"\n [(selection)]=\"selected\"\n [value]=\"gridData\"\n [columns]=\"gridColumns\"\n dataKey=\"id\"\n rows=\"10\"\n [rowsPerPageOptions]=\"[10, 20, 50, 100]\"\n [paginator]=\"true\"\n [totalRecords]=\"gridTotalRecords\"\n [lazy]=\"lazy\"\n (onLazyLoad)=\"updateGridData($event)\"\n *sLoadingState=\"gridLoading\"\n sortMode=\"multiple\"\n [frozenWidth]=\"frozenWidth\"\n [scrollable]=\"true\"\n [sTableFrozenPosition]=\"frozenPosition\"\n [sTableFrozenValue]=\"gridData\"\n editMode=\"row\"\n #table\n >\n <ng-template pTemplate=\"frozencolgroup\" let-columns>\n <colgroup>\n <col class=\"col50\" />\n <col *ngFor=\"let col of frozenColumns\" class=\"col200\" />\n <col class=\"frozenButton\" />\n </colgroup>\n </ng-template>\n\n <ng-template pTemplate=\"frozenheader\">\n <tr>\n <th pResizableColumn scope=\"col\"></th>\n <th pResizableColumn *ngFor=\"let col of frozenColumns\" scope=\"col\">{{ col.header }}</th>\n <th pResizableColumn scope=\"col\"></th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"frozenbody\" let-rowData let-expanded=\"expanded\">\n <tr [pSelectableRow]=\"rowData\">\n <td class=\"col50\" tabindex=\"0\" [sRowToggler]=\"rowData\">\n <i class=\"fa fa-{{ expanded ? 'minus' : 'plus' }} \"></i>\n </td>\n <td *ngFor=\"let col of frozenColumns\" class=\"colText\"\n tooltipPosition=\"top\" showDelay=\"500\"\n [innerHTML]=\"getSpanProp(rowData, col.field)\">\n </td>\n <td class=\"frozenButton\">\n <s-button\n id=\"edit-button\"\n data-cy=\"edit-button\"\n priority=\"default\"\n type=\"button\"\n size=\"small\"\n [auxiliary]=\"true\"\n [disabled]=\"false\"\n [model]=\"getActions(rowData)\">\n </s-button>\n </td>\n </tr>\n </ng-template>\n\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\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th *ngFor=\"let col of columns\" scope=\"col\">\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.header }}</span>\n </div>\n </th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"body\" let-rowData let-expanded=\"expanded\" let-columns=\"columns\">\n <tr sNavigation tabindex=\"0\" [pEditableRow]=\"rowData\">\n <td\n *ngFor=\"let col of columns\"\n [ngClass]=\"editing? 'editPadding': ''\"\n pResizableColumn\n [pTooltip]=\"rowData[col.field]\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n tabindex=\"0\"\n class=\"col80 colText\"\n >\n <p-cellEditor>\n <ng-template pTemplate=\"input\">\n <div class=\"ui-fluid\">\n <ng-container [ngSwitch]=\"col.type\">\n <ng-container *ngSwitchCase=\"'Text'\">\n <span>{{ rowData[col.field] }}</span>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Date'\">\n <p-calendar\n [(ngModel)]=\"rowData[col.field]\"\n appendTo=\"body\"\n [showIcon]=\"true\"\n [required]=\"true\"\n pTooltip=\"{{ calendarTooltipText }}\"\n tooltipPosition=\"bottom\"\n [tooltipDisabled]=\"rowData[col.field]\"\n ></p-calendar>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Autocomplete'\">\n <p-autoComplete\n [(ngModel)]=\"rowData[col.field]\"\n [suggestions]=\"col.options\"\n appendTo=\"body\"\n (completeMethod)=\"filterOptions($event)\"\n [dropdown]=\"true\"\n [forceSelection]=\"true\"\n ></p-autoComplete>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Decimal'\">\n <div class=\"ui-inputgroup\">\n <span class=\"ui-inputgroup-addon\"\n *ngIf=\"'MONETARIO' === rowData.tiposDados[col.field]\"\n >R$</span>\n <input sNumberInput [scale]=\"2\"\n alignTo=\"right\"\n thousandsSeparator=\".\"\n pInputText\n [(ngModel)]=\"rowData[col.field]\"\n (keydown)=\"onTab($event)\"\n />\n <span class=\"ui-inputgroup-addon\"\n *ngIf=\"'PERCENTUAL' === rowData.tiposDados[col.field]\"\n >%</span>\n </div>\n </ng-container>\n\n <ng-container *ngSwitchDefault>\n <input pInputText type=\"text\"\n [(ngModel)]=\"rowData[col.field]\"\n (keydown)=\"onTab($event)\"\n />\n </ng-container>\n </ng-container>\n </div>\n </ng-template>\n\n <ng-template pTemplate=\"output\">\n <div [innerHTML]=\"getSpanProp(rowData, col.field, col.type)\"></div>\n </ng-template>\n </p-cellEditor>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"rowexpansion\" let-rowData>\n <tr class=\"sds-expanded-row\">\n <td [attr.colspan]=\"gridColumns.length + 1\">\n <p-table\n [value]=\"rowData.nestedGridData\"\n [columns]=\"rowData.nestedGridColumns\"\n dataKey=\"id\"\n rows=\"5\"\n [first]=\"getRowIndex()\"\n [rows]=\"getPageSize()\"\n [rowsPerPageOptions]=\"[5, 10, 20, 50]\"\n [paginator]=\"true\"\n [totalRecords]=\"rowData.nestedGridTotalRecords\"\n [responsive]=\"true\"\n [lazy]=\"true\"\n (onLazyLoad)=\"updateNestedGridData($event, rowData)\"\n sortMode=\"multiple\"\n *sLoadingState=\"rowData.nestedGridLoading\"\n >\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th *ngFor=\"let col of columns\" scope=\"col\"\n [pSortableColumn]=\"col.field\">\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\n <ng-template pTemplate=\"body\" let-rowData let-columns=\"columns\">\n <tr [pSelectableRow]=\"rowData\">\n <td *ngFor=\"let col of columns\" class=\"colText\">\n {{ formatData(col, rowData[col.field]) }}\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"paginatorright\">\n <span>\n {{ rowData.nestedGridTotalRecords }}\n {{'tmsx_com.tmsx_angular_components.grid_editable_nested_paging' | translate}}\n </span>\n </ng-template>\n </p-table>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"paginatorright\">\n <span>\n {{ gridTotalRecords }}\n {{'tmsx_com.tmsx_angular_components.grid_editable_nested_paging' | translate}}\n </span>\n </ng-template>\n </p-table>\n </div>\n</div>\n",
|
|
950
|
+
template: "<div class=\"ui-g\">\n <div class=\"ui-g-12\">\n <s-button id=\"add-button\"\n data-cy=\"add-button\"\n priority=\"primary\" type=\"button\"\n [label]=\"'tmsx_fnd.tmsx_angular_components.add' | translate\"\n tooltip=\"{{'tmsx_fnd.tmsx_angular_components.add' | translate}} (Alt + Shift + N)\"\n [disabled]=\"!addEnabled\"\n (click)=\"onAdd()\">\n </s-button>\n <s-button\n *ngIf=\"!editing\"\n priority=\"primary\"\n iconClass=\"fa fa-edit\"\n label=\"{{'tmsx_fnd.tmsx_angular_components.grid_editable_nested_editar' | translate}}\"\n tooltip=\"{{'tmsx_fnd.tmsx_angular_components.grid_editable_nested_editar' | translate}}\"\n [disabled]=\"!editEnabled\"\n (click)=\"initAllRowsEdit()\"\n ></s-button>\n <s-button\n *ngIf=\"editing\"\n priority=\"primary\"\n label=\"{{'tmsx_fnd.tmsx_angular_components.grid_editable_nested_salvar' | translate}}\"\n iconClass=\"fa fa-check\"\n [disabled]=\"false\"\n (click)=\"onEditSave()\"\n ></s-button>\n <s-button\n *ngIf=\"editing\"\n priority=\"default\"\n label=\"{{'tmsx_fnd.tmsx_angular_components.grid_editable_nested_cancelar' | translate}}\"\n iconClass=\"fa fa-times\"\n [disabled]=\"false\"\n (click)=\"onEditCancel()\"\n ></s-button>\n <p-table\n selectionMode=\"single\"\n [(selection)]=\"selected\"\n [value]=\"gridData\"\n [columns]=\"gridColumns\"\n dataKey=\"id\"\n rows=\"10\"\n [rowsPerPageOptions]=\"[10, 20, 50, 100]\"\n [paginator]=\"true\"\n [totalRecords]=\"gridTotalRecords\"\n [lazy]=\"lazy\"\n (onLazyLoad)=\"updateGridData($event)\"\n *sLoadingState=\"gridLoading\"\n sortMode=\"multiple\"\n [frozenWidth]=\"frozenWidth\"\n [scrollable]=\"true\"\n [sTableFrozenPosition]=\"frozenPosition\"\n [sTableFrozenValue]=\"gridData\"\n editMode=\"row\"\n #table\n >\n <ng-template pTemplate=\"frozencolgroup\" let-columns>\n <colgroup>\n <col class=\"col50\" />\n <col *ngFor=\"let col of frozenColumns\" class=\"col200\" />\n <col class=\"frozenButton\" />\n </colgroup>\n </ng-template>\n\n <ng-template pTemplate=\"frozenheader\">\n <tr>\n <th pResizableColumn scope=\"col\"></th>\n <th pResizableColumn *ngFor=\"let col of frozenColumns\" scope=\"col\">{{ col.header }}</th>\n <th pResizableColumn scope=\"col\"></th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"frozenbody\" let-rowData let-expanded=\"expanded\">\n <tr [pSelectableRow]=\"rowData\">\n <td class=\"col50\" tabindex=\"0\" [sRowToggler]=\"rowData\">\n <i class=\"fa fa-{{ expanded ? 'minus' : 'plus' }} \"></i>\n </td>\n <td *ngFor=\"let col of frozenColumns\" class=\"colText\"\n tooltipPosition=\"top\" showDelay=\"500\"\n [innerHTML]=\"getSpanProp(rowData, col.field)\">\n </td>\n <td class=\"frozenButton\">\n <s-button\n id=\"edit-button\"\n data-cy=\"edit-button\"\n priority=\"default\"\n type=\"button\"\n size=\"small\"\n [auxiliary]=\"true\"\n [disabled]=\"false\"\n [model]=\"getActions(rowData)\">\n </s-button>\n </td>\n </tr>\n </ng-template>\n\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\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th *ngFor=\"let col of columns\" scope=\"col\">\n <div class=\"senior-header\">\n <span class=\"senior-header-title\">{{ col.header }}</span>\n </div>\n </th>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"body\" let-rowData let-expanded=\"expanded\" let-columns=\"columns\">\n <tr sNavigation tabindex=\"0\" [pEditableRow]=\"rowData\">\n <td\n *ngFor=\"let col of columns\"\n [ngClass]=\"editing? 'editPadding': ''\"\n pResizableColumn\n [pTooltip]=\"rowData[col.field]\"\n tooltipPosition=\"top\"\n showDelay=\"500\"\n tabindex=\"0\"\n class=\"col80 colText\"\n >\n <p-cellEditor>\n <ng-template pTemplate=\"input\">\n <div class=\"ui-fluid\">\n <ng-container [ngSwitch]=\"col.type\">\n <ng-container *ngSwitchCase=\"'Text'\">\n <span>{{ rowData[col.field] }}</span>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Date'\">\n <p-calendar\n [(ngModel)]=\"rowData[col.field]\"\n appendTo=\"body\"\n [showIcon]=\"true\"\n [required]=\"true\"\n pTooltip=\"{{ calendarTooltipText }}\"\n tooltipPosition=\"bottom\"\n [tooltipDisabled]=\"rowData[col.field]\"\n ></p-calendar>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Autocomplete'\">\n <p-autoComplete\n [(ngModel)]=\"rowData[col.field]\"\n [suggestions]=\"col.options\"\n appendTo=\"body\"\n (completeMethod)=\"filterOptions($event)\"\n [dropdown]=\"true\"\n [forceSelection]=\"true\"\n ></p-autoComplete>\n </ng-container>\n\n <ng-container *ngSwitchCase=\"'Decimal'\">\n <div class=\"ui-inputgroup\">\n <span class=\"ui-inputgroup-addon\"\n *ngIf=\"'MONETARIO' === rowData.tiposDados[col.field]\"\n >R$</span>\n <input sNumberInput [scale]=\"2\"\n alignTo=\"right\"\n thousandsSeparator=\".\"\n pInputText\n [(ngModel)]=\"rowData[col.field]\"\n (keydown)=\"onTab($event)\"\n />\n <span class=\"ui-inputgroup-addon\"\n *ngIf=\"'PERCENTUAL' === rowData.tiposDados[col.field]\"\n >%</span>\n </div>\n </ng-container>\n\n <ng-container *ngSwitchDefault>\n <input pInputText type=\"text\"\n [(ngModel)]=\"rowData[col.field]\"\n (keydown)=\"onTab($event)\"\n />\n </ng-container>\n </ng-container>\n </div>\n </ng-template>\n\n <ng-template pTemplate=\"output\">\n <div [innerHTML]=\"getSpanProp(rowData, col.field, col.type)\"></div>\n </ng-template>\n </p-cellEditor>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"rowexpansion\" let-rowData>\n <tr class=\"sds-expanded-row\">\n <td [attr.colspan]=\"gridColumns.length + 1\">\n <p-table\n [value]=\"rowData.nestedGridData\"\n [columns]=\"rowData.nestedGridColumns\"\n dataKey=\"id\"\n rows=\"5\"\n [first]=\"getRowIndex()\"\n [rows]=\"getPageSize()\"\n [rowsPerPageOptions]=\"[5, 10, 20, 50]\"\n [paginator]=\"true\"\n [totalRecords]=\"rowData.nestedGridTotalRecords\"\n [responsive]=\"true\"\n [lazy]=\"true\"\n (onLazyLoad)=\"updateNestedGridData($event, rowData)\"\n sortMode=\"multiple\"\n *sLoadingState=\"rowData.nestedGridLoading\"\n >\n <ng-template pTemplate=\"header\" let-columns>\n <tr>\n <th *ngFor=\"let col of columns\" scope=\"col\"\n [pSortableColumn]=\"col.field\">\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\n <ng-template pTemplate=\"body\" let-rowData let-columns=\"columns\">\n <tr [pSelectableRow]=\"rowData\">\n <td *ngFor=\"let col of columns\" class=\"colText\">\n {{ formatData(col, rowData[col.field]) }}\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"paginatorright\">\n <span>\n {{ rowData.nestedGridTotalRecords }}\n {{'tmsx_fnd.tmsx_angular_components.grid_editable_nested_paging' | translate}}\n </span>\n </ng-template>\n </p-table>\n </td>\n </tr>\n </ng-template>\n\n <ng-template pTemplate=\"paginatorright\">\n <span>\n {{ gridTotalRecords }}\n {{'tmsx_fnd.tmsx_angular_components.grid_editable_nested_paging' | translate}}\n </span>\n </ng-template>\n </p-table>\n </div>\n</div>\n",
|
|
951
951
|
styles: [":host ::ng-deep div.contents{margin-top:15px}input{max-width:100%}.col50{width:50px}.col80{width:80px}.col200{width:200px}.colText{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.frozenButton{width:70px;padding:5px}.editPadding{padding-top:8px;padding-bottom:9px}"]
|
|
952
952
|
})
|
|
953
953
|
], GridEditableNestedComponent);
|
|
@@ -1026,336 +1026,42 @@
|
|
|
1026
1026
|
}());
|
|
1027
1027
|
|
|
1028
1028
|
var fallback = {
|
|
1029
|
-
"
|
|
1030
|
-
"
|
|
1031
|
-
"
|
|
1032
|
-
"
|
|
1033
|
-
"
|
|
1034
|
-
"
|
|
1035
|
-
"
|
|
1036
|
-
"
|
|
1037
|
-
"
|
|
1038
|
-
"
|
|
1039
|
-
"
|
|
1040
|
-
"
|
|
1041
|
-
"
|
|
1042
|
-
"
|
|
1043
|
-
"
|
|
1044
|
-
"
|
|
1045
|
-
"
|
|
1046
|
-
"
|
|
1047
|
-
"
|
|
1048
|
-
"
|
|
1049
|
-
"
|
|
1050
|
-
"
|
|
1051
|
-
"
|
|
1052
|
-
"
|
|
1053
|
-
"
|
|
1054
|
-
"
|
|
1055
|
-
"
|
|
1056
|
-
"
|
|
1057
|
-
"
|
|
1058
|
-
"
|
|
1059
|
-
"
|
|
1060
|
-
"
|
|
1061
|
-
"
|
|
1062
|
-
"
|
|
1063
|
-
"
|
|
1064
|
-
"
|
|
1065
|
-
"platform.angular_components.may_short": "Mai",
|
|
1066
|
-
"platform.angular_components.june_short": "Jun",
|
|
1067
|
-
"platform.angular_components.july_short": "Jul",
|
|
1068
|
-
"platform.angular_components.august_short": "Ago",
|
|
1069
|
-
"platform.angular_components.september_short": "Set",
|
|
1070
|
-
"platform.angular_components.october_short": "Out",
|
|
1071
|
-
"platform.angular_components.november_short": "Nov",
|
|
1072
|
-
"platform.angular_components.december_short": "Dez",
|
|
1073
|
-
"platform.angular_components.sunday": "Domingo",
|
|
1074
|
-
"platform.angular_components.monday": "Segunda-feira",
|
|
1075
|
-
"platform.angular_components.tuesday": "Terça-feira",
|
|
1076
|
-
"platform.angular_components.wednesday": "Quarta-feira",
|
|
1077
|
-
"platform.angular_components.thursday": "Quinta-feira",
|
|
1078
|
-
"platform.angular_components.friday": "Sexta-feira",
|
|
1079
|
-
"platform.angular_components.saturday": "Sábado",
|
|
1080
|
-
"platform.angular_components.sunday_short": "Dom",
|
|
1081
|
-
"platform.angular_components.monday_short": "Seg",
|
|
1082
|
-
"platform.angular_components.tuesday_short": "Ter",
|
|
1083
|
-
"platform.angular_components.wednesday_short": "Qua",
|
|
1084
|
-
"platform.angular_components.thursday_short": "Qui",
|
|
1085
|
-
"platform.angular_components.friday_short": "Sex",
|
|
1086
|
-
"platform.angular_components.saturday_short": "Sáb",
|
|
1087
|
-
"platform.angular_components.sunday_min": "D",
|
|
1088
|
-
"platform.angular_components.monday_min": "S",
|
|
1089
|
-
"platform.angular_components.tuesday_min": "T",
|
|
1090
|
-
"platform.angular_components.wednesday_min": "Q",
|
|
1091
|
-
"platform.angular_components.thursday_min": "Q",
|
|
1092
|
-
"platform.angular_components.friday_min": "S",
|
|
1093
|
-
"platform.angular_components.saturday_min": "S",
|
|
1094
|
-
"platform.angular_components.today": "Hoje",
|
|
1095
|
-
"platform.angular_components.hour_format": "24",
|
|
1096
|
-
"platform.angular_components.date_format": "dd/mm/yy",
|
|
1097
|
-
"platform.angular_components.ia_text_generator": "Gerador de texto por IA",
|
|
1098
|
-
"platform.angular_components.attach_files": "Anexar arquivos",
|
|
1099
|
-
"platform.angular_components.add_information": "Adicionar informação",
|
|
1100
|
-
"platform.angular_components.add": "Adicionar",
|
|
1101
|
-
"platform.angular_components.edit": "Editar",
|
|
1102
|
-
"platform.angular_components.remove": "Remover",
|
|
1103
|
-
"platform.angular_components.save": "Salvar",
|
|
1104
|
-
"platform.angular_components.file_attached_successfully": "Arquivo anexado com sucesso",
|
|
1105
|
-
"platform.angular_components.loading_file": "Carregando arquivo",
|
|
1106
|
-
"platform.angular_components.iassist_text_generator": "IAssist Gerador de texto",
|
|
1107
|
-
"platform.angular_components.copied_to_clipboard": "Copiado para área de transferência",
|
|
1108
|
-
"platform.angular_components.copy_field_content": "Copiar conteúdo preenchido",
|
|
1109
|
-
"platform.angular_components.generate_text": "Gerar texto",
|
|
1110
|
-
"platform.angular_components.context": "Contexto",
|
|
1111
|
-
"platform.angular_components.filters": "Filtros",
|
|
1112
|
-
"platform.angular_components.filter": "Filtrar",
|
|
1113
|
-
"platform.angular_components.clear": "Limpar",
|
|
1114
|
-
"platform.angular_components.cancel": "Cancelar",
|
|
1115
|
-
"platform.angular_components.select": "Selecionar",
|
|
1116
|
-
"platform.angular_components.not_informed": "Não informado",
|
|
1117
|
-
"platform.angular_components.advanced_search": "Pesquisa avançada",
|
|
1118
|
-
"platform.angular_components.no_records_found": "Nenhum registro encontrado",
|
|
1119
|
-
"platform.angular_components.total_record": "{{ count }} registro encontrado",
|
|
1120
|
-
"platform.angular_components.total_records": "{{ count }} registros encontrados",
|
|
1121
|
-
"platform.angular_components.total_records_selected": "{0} registros selecionados",
|
|
1122
|
-
"platform.angular_components.country_name_br": "Brasil",
|
|
1123
|
-
"platform.angular_components.country_name_us": "Estados Unidos",
|
|
1124
|
-
"platform.angular_components.country_name_co": "Colômbia",
|
|
1125
|
-
"platform.angular_components.country_name_ar": "Argentina",
|
|
1126
|
-
"platform.angular_components.country_name_cl": "Chile",
|
|
1127
|
-
"platform.angular_components.country_name_py": "Paraguai",
|
|
1128
|
-
"platform.angular_components.country_name_uy": "Uruguai",
|
|
1129
|
-
"platform.angular_components.country_name_cn": "China",
|
|
1130
|
-
"platform.angular_components.country_name_ca": "Canadá",
|
|
1131
|
-
"platform.angular_components.country_name_as": "Samoa Americana",
|
|
1132
|
-
"platform.angular_components.country_name_ai": "Anguilla",
|
|
1133
|
-
"platform.angular_components.country_name_ag": "Antígua e Barbuda",
|
|
1134
|
-
"platform.angular_components.country_name_bs": "Bahamas",
|
|
1135
|
-
"platform.angular_components.country_name_bb": "Barbados",
|
|
1136
|
-
"platform.angular_components.country_name_bm": "Bermuda",
|
|
1137
|
-
"platform.angular_components.country_name_vg": "Ilhas Virgens Britânicas",
|
|
1138
|
-
"platform.angular_components.country_name_ky": "Ilhas Cayman",
|
|
1139
|
-
"platform.angular_components.country_name_dm": "Dominica",
|
|
1140
|
-
"platform.angular_components.country_name_do": "República Dominicana",
|
|
1141
|
-
"platform.angular_components.country_name_gd": "Granada",
|
|
1142
|
-
"platform.angular_components.country_name_gu": "Guam",
|
|
1143
|
-
"platform.angular_components.country_name_jm": "Jamaica",
|
|
1144
|
-
"platform.angular_components.country_name_ms": "Montserrat",
|
|
1145
|
-
"platform.angular_components.country_name_mp": "Ilhas Mariana do Norte",
|
|
1146
|
-
"platform.angular_components.country_name_pr": "Porto Rico",
|
|
1147
|
-
"platform.angular_components.country_name_kn": "Saint Kitts and Nevis",
|
|
1148
|
-
"platform.angular_components.country_name_lc": "Saint Lucia",
|
|
1149
|
-
"platform.angular_components.country_name_vc": "Saint Vincent and the Grenadines",
|
|
1150
|
-
"platform.angular_components.country_name_tt": "Trinidad e Tobago",
|
|
1151
|
-
"platform.angular_components.country_name_tc": "Ilhas Turcas e Caicos",
|
|
1152
|
-
"platform.angular_components.country_name_fi": "Finlândia",
|
|
1153
|
-
"platform.angular_components.country_name_rs": "Sérvia",
|
|
1154
|
-
"platform.angular_components.country_name_zm": "Zâmbia",
|
|
1155
|
-
"platform.angular_components.country_name_af": "Afghanistão",
|
|
1156
|
-
"platform.angular_components.country_name_al": "Albânia",
|
|
1157
|
-
"platform.angular_components.country_name_hr": "Croácia",
|
|
1158
|
-
"platform.angular_components.country_name_ec": "Equador",
|
|
1159
|
-
"platform.angular_components.country_name_et": "Etiópia",
|
|
1160
|
-
"platform.angular_components.country_name_gh": "Gana",
|
|
1161
|
-
"platform.angular_components.country_name_gr": "Grécia",
|
|
1162
|
-
"platform.angular_components.country_name_ie": "Irlanda",
|
|
1163
|
-
"platform.angular_components.country_name_it": "Itália",
|
|
1164
|
-
"platform.angular_components.country_name_lr": "Libéria",
|
|
1165
|
-
"platform.angular_components.country_name_na": "Namíbia",
|
|
1166
|
-
"platform.angular_components.country_name_nz": "Nova Zelândia",
|
|
1167
|
-
"platform.angular_components.country_name_sa": "Arábia Saudita",
|
|
1168
|
-
"platform.angular_components.country_name_za": "África do Sul",
|
|
1169
|
-
"platform.angular_components.country_name_lk": "Sri Lanka",
|
|
1170
|
-
"platform.angular_components.country_name_sd": "Sudão",
|
|
1171
|
-
"platform.angular_components.country_name_th": "Tailândia",
|
|
1172
|
-
"platform.angular_components.country_name_ua": "Ucrânia",
|
|
1173
|
-
"platform.angular_components.country_name_ae": "Emirados Árabes Unidos",
|
|
1174
|
-
"platform.angular_components.country_name_va": "Vaticano",
|
|
1175
|
-
"platform.angular_components.country_name_zw": "Zimbábue",
|
|
1176
|
-
"platform.angular_components.country_name_dz": "Argélia",
|
|
1177
|
-
"platform.angular_components.country_name_be": "Bélgica",
|
|
1178
|
-
"platform.angular_components.country_name_yt": "Mayotte",
|
|
1179
|
-
"platform.angular_components.country_name_bl": "Saint Barthelemy",
|
|
1180
|
-
"platform.angular_components.country_name_mf": "Saint Martin",
|
|
1181
|
-
"platform.angular_components.country_name_ad": "Andora",
|
|
1182
|
-
"platform.angular_components.country_name_ao": "Angola",
|
|
1183
|
-
"platform.angular_components.country_name_ba": "Bósnia e Herzegovina",
|
|
1184
|
-
"platform.angular_components.country_name_bg": "Bulgária",
|
|
1185
|
-
"platform.angular_components.country_name_kh": "Camboja",
|
|
1186
|
-
"platform.angular_components.country_name_cz": "República Checa",
|
|
1187
|
-
"platform.angular_components.country_name_gq": "Guiné Equatorial",
|
|
1188
|
-
"platform.angular_components.country_name_gw": "Guiné-Bissau",
|
|
1189
|
-
"platform.angular_components.country_name_li": "Liechtenstein",
|
|
1190
|
-
"platform.angular_components.country_name_lu": "Luxemburgo",
|
|
1191
|
-
"platform.angular_components.country_name_mk": "Macedónia",
|
|
1192
|
-
"platform.angular_components.country_name_me": "Montenegro",
|
|
1193
|
-
"platform.angular_components.country_name_pe": "Peru",
|
|
1194
|
-
"platform.angular_components.country_name_pl": "Polónia",
|
|
1195
|
-
"platform.angular_components.country_name_pt": "Portugal",
|
|
1196
|
-
"platform.angular_components.country_name_si": "Slovenia",
|
|
1197
|
-
"platform.angular_components.country_name_am": "Arménia",
|
|
1198
|
-
"platform.angular_components.country_name_aw": "Aruba",
|
|
1199
|
-
"platform.angular_components.country_name_bn": "Brunei",
|
|
1200
|
-
"platform.angular_components.country_name_fj": "Fiji",
|
|
1201
|
-
"platform.angular_components.country_name_gm": "Gâmbia",
|
|
1202
|
-
"platform.angular_components.country_name_gy": "Guiana",
|
|
1203
|
-
"platform.angular_components.country_name_is": "Islândia",
|
|
1204
|
-
"platform.angular_components.country_name_fm": "Micronésia",
|
|
1205
|
-
"platform.angular_components.country_name_nr": "Nauru",
|
|
1206
|
-
"platform.angular_components.country_name_nu": "Niue",
|
|
1207
|
-
"platform.angular_components.country_name_pw": "Palau",
|
|
1208
|
-
"platform.angular_components.country_name_st": "Sao Tome e Principe",
|
|
1209
|
-
"platform.angular_components.country_name_to": "Tonga",
|
|
1210
|
-
"platform.angular_components.country_name_vu": "Vanuatu",
|
|
1211
|
-
"platform.angular_components.country_name_fk": "Ilhas Falkland (Malvinas)",
|
|
1212
|
-
"platform.angular_components.country_name_fo": "Ilhas Feroé",
|
|
1213
|
-
"platform.angular_components.country_name_sh": "Saint Helena",
|
|
1214
|
-
"platform.angular_components.country_name_au": "Austrália",
|
|
1215
|
-
"platform.angular_components.country_name_cx": "Christmas Island",
|
|
1216
|
-
"platform.angular_components.country_name_cc": "Ilhas Cocos (Keeling)",
|
|
1217
|
-
"platform.angular_components.country_name_cd": "República Democrática do Congo",
|
|
1218
|
-
"platform.angular_components.country_name_kg": "Quirguistão",
|
|
1219
|
-
"platform.angular_components.country_name_ro": "Roménia",
|
|
1220
|
-
"platform.angular_components.country_name_rw": "Ruanda",
|
|
1221
|
-
"platform.angular_components.country_name_sk": "Slovakia",
|
|
1222
|
-
"platform.angular_components.country_name_sy": "Syria",
|
|
1223
|
-
"platform.angular_components.country_name_tw": "Taiwan",
|
|
1224
|
-
"platform.angular_components.country_name_tz": "Tanzânia",
|
|
1225
|
-
"platform.angular_components.country_name_ye": "Iémen (Iémen, Yemen)",
|
|
1226
|
-
"platform.angular_components.country_name_at": "Áustria",
|
|
1227
|
-
"platform.angular_components.country_name_ke": "Quénia (Kenya)",
|
|
1228
|
-
"platform.angular_components.country_name_ug": "Uganda",
|
|
1229
|
-
"platform.angular_components.country_name_az": "Azerbaijão",
|
|
1230
|
-
"platform.angular_components.country_name_ch": "Suiça",
|
|
1231
|
-
"platform.angular_components.country_name_vn": "Vietnã (Vietname)",
|
|
1232
|
-
"platform.angular_components.country_name_bh": "Bahrein",
|
|
1233
|
-
"platform.angular_components.country_name_cr": "Costa Rica",
|
|
1234
|
-
"platform.angular_components.country_name_sv": "El Salvador",
|
|
1235
|
-
"platform.angular_components.country_name_ee": "Estónia",
|
|
1236
|
-
"platform.angular_components.country_name_sz": "Suazilândia",
|
|
1237
|
-
"platform.angular_components.country_name_gt": "Guatemala",
|
|
1238
|
-
"platform.angular_components.country_name_hk": "Hong Kong",
|
|
1239
|
-
"platform.angular_components.country_name_ls": "Lesoto",
|
|
1240
|
-
"platform.angular_components.country_name_mo": "Macau",
|
|
1241
|
-
"platform.angular_components.country_name_mt": "Malta",
|
|
1242
|
-
"platform.angular_components.country_name_mu": "Maurícia",
|
|
1243
|
-
"platform.angular_components.country_name_mn": "Mongólia",
|
|
1244
|
-
"platform.angular_components.country_name_ni": "Nicaragua",
|
|
1245
|
-
"platform.angular_components.country_name_om": "Omã",
|
|
1246
|
-
"platform.angular_components.country_name_pg": "Papua-Nova Guiné",
|
|
1247
|
-
"platform.angular_components.country_name_qa": "Catar",
|
|
1248
|
-
"platform.angular_components.country_name_sg": "Cingapura",
|
|
1249
|
-
"platform.angular_components.country_name_tl": "Timor-Leste",
|
|
1250
|
-
"platform.angular_components.country_name_bd": "Bangladesh",
|
|
1251
|
-
"platform.angular_components.country_name_im": "Ilha de Man",
|
|
1252
|
-
"platform.angular_components.country_name_by": "Bielorrússia",
|
|
1253
|
-
"platform.angular_components.country_name_bz": "Belize",
|
|
1254
|
-
"platform.angular_components.country_name_mv": "Maldivas",
|
|
1255
|
-
"platform.angular_components.country_name_mh": "Ilhas Marshall",
|
|
1256
|
-
"platform.angular_components.country_name_sr": "Suriname",
|
|
1257
|
-
"platform.angular_components.country_name_bj": "Benim",
|
|
1258
|
-
"platform.angular_components.country_name_bt": "Butão",
|
|
1259
|
-
"platform.angular_components.country_name_bf": "Burkina Faso",
|
|
1260
|
-
"platform.angular_components.country_name_bi": "Burundi",
|
|
1261
|
-
"platform.angular_components.country_name_cf": "República Centro-Africana",
|
|
1262
|
-
"platform.angular_components.country_name_td": "Chad",
|
|
1263
|
-
"platform.angular_components.country_name_ci": "Costa do Marfim",
|
|
1264
|
-
"platform.angular_components.country_name_dk": "Dinamarca",
|
|
1265
|
-
"platform.angular_components.country_name_dj": "Djibouti",
|
|
1266
|
-
"platform.angular_components.country_name_fr": "França",
|
|
1267
|
-
"platform.angular_components.country_name_pf": "Polinésia Francesa",
|
|
1268
|
-
"platform.angular_components.country_name_ga": "Gabão",
|
|
1269
|
-
"platform.angular_components.country_name_ml": "Mali",
|
|
1270
|
-
"platform.angular_components.country_name_mr": "Mauritânia",
|
|
1271
|
-
"platform.angular_components.country_name_ne": "Níger",
|
|
1272
|
-
"platform.angular_components.country_name_sm": "San Marino",
|
|
1273
|
-
"platform.angular_components.country_name_tg": "Togo",
|
|
1274
|
-
"platform.angular_components.country_name_bo": "Bolívia",
|
|
1275
|
-
"platform.angular_components.country_name_gi": "Gibraltar",
|
|
1276
|
-
"platform.angular_components.country_name_ki": "Kiribati",
|
|
1277
|
-
"platform.angular_components.country_name_tv": "Tuvalu",
|
|
1278
|
-
"platform.angular_components.country_name_bw": "Botswana",
|
|
1279
|
-
"platform.angular_components.country_name_er": "Eritreia",
|
|
1280
|
-
"platform.angular_components.country_name_lv": "Letônia",
|
|
1281
|
-
"platform.angular_components.country_name_lb": "Líbano",
|
|
1282
|
-
"platform.angular_components.country_name_tn": "Tunísia",
|
|
1283
|
-
"platform.angular_components.country_name_cm": "Camarões",
|
|
1284
|
-
"platform.angular_components.country_name_cv": "Cabo Verde",
|
|
1285
|
-
"platform.angular_components.country_name_km": "Comores",
|
|
1286
|
-
"platform.angular_components.country_name_pm": "Saint Pierre and Miquelon",
|
|
1287
|
-
"platform.angular_components.country_name_cg": "República do Congo",
|
|
1288
|
-
"platform.angular_components.country_name_mz": "Moçambique",
|
|
1289
|
-
"platform.angular_components.country_name_mm": "Myanmar (Burma)",
|
|
1290
|
-
"platform.angular_components.country_name_ck": "Ilhas Cook",
|
|
1291
|
-
"platform.angular_components.country_name_cu": "Cuba",
|
|
1292
|
-
"platform.angular_components.country_name_cy": "Chipre",
|
|
1293
|
-
"platform.angular_components.country_name_eg": "Egito",
|
|
1294
|
-
"platform.angular_components.country_name_ir": "Irã",
|
|
1295
|
-
"platform.angular_components.country_name_iq": "Iraque",
|
|
1296
|
-
"platform.angular_components.country_name_ng": "Nigéria",
|
|
1297
|
-
"platform.angular_components.country_name_kp": "Coreia do Norte",
|
|
1298
|
-
"platform.angular_components.country_name_ph": "Filipinas",
|
|
1299
|
-
"platform.angular_components.country_name_ge": "Geórgia",
|
|
1300
|
-
"platform.angular_components.country_name_gn": "Guiné",
|
|
1301
|
-
"platform.angular_components.country_name_es": "Espanha",
|
|
1302
|
-
"platform.angular_components.country_name_de": "Alemanha",
|
|
1303
|
-
"platform.angular_components.country_name_gl": "Groelândia",
|
|
1304
|
-
"platform.angular_components.country_name_wf": "Wallis e Futuna",
|
|
1305
|
-
"platform.angular_components.country_name_ht": "Haiti",
|
|
1306
|
-
"platform.angular_components.country_name_hn": "Honduras",
|
|
1307
|
-
"platform.angular_components.country_name_pa": "Panamá",
|
|
1308
|
-
"platform.angular_components.country_name_hu": "Hungria",
|
|
1309
|
-
"platform.angular_components.country_name_in": "India",
|
|
1310
|
-
"platform.angular_components.country_name_id": "Indonésia",
|
|
1311
|
-
"platform.angular_components.country_name_il": "Israel",
|
|
1312
|
-
"platform.angular_components.country_name_jp": "Japão",
|
|
1313
|
-
"platform.angular_components.country_name_jo": "Jordânia",
|
|
1314
|
-
"platform.angular_components.country_name_kz": "Cazaquistão",
|
|
1315
|
-
"platform.angular_components.country_name_kw": "Kuwait",
|
|
1316
|
-
"platform.angular_components.country_name_la": "Laos",
|
|
1317
|
-
"platform.angular_components.country_name_ly": "Líbia",
|
|
1318
|
-
"platform.angular_components.country_name_lt": "Lituânia",
|
|
1319
|
-
"platform.angular_components.country_name_np": "Nepal",
|
|
1320
|
-
"platform.angular_components.country_name_mg": "Madagáscar",
|
|
1321
|
-
"platform.angular_components.country_name_mw": "Malawi",
|
|
1322
|
-
"platform.angular_components.country_name_my": "Malásia",
|
|
1323
|
-
"platform.angular_components.country_name_mx": "México",
|
|
1324
|
-
"platform.angular_components.country_name_md": "Moldávia",
|
|
1325
|
-
"platform.angular_components.country_name_mc": "Monaco",
|
|
1326
|
-
"platform.angular_components.country_name_ma": "Marrocos",
|
|
1327
|
-
"platform.angular_components.country_name_nl": "Países Baixos",
|
|
1328
|
-
"platform.angular_components.country_name_nc": "Nova Caledônia",
|
|
1329
|
-
"platform.angular_components.country_name_no": "Noruega",
|
|
1330
|
-
"platform.angular_components.country_name_pk": "Paquistão",
|
|
1331
|
-
"platform.angular_components.country_name_ru": "Rússia",
|
|
1332
|
-
"platform.angular_components.country_name_ws": "Samoa",
|
|
1333
|
-
"platform.angular_components.country_name_sb": "Ilhas Salomão",
|
|
1334
|
-
"platform.angular_components.country_name_sn": "Senegal",
|
|
1335
|
-
"platform.angular_components.country_name_sc": "Seychelles",
|
|
1336
|
-
"platform.angular_components.country_name_sl": "Serra Leoa",
|
|
1337
|
-
"platform.angular_components.country_name_so": "Somalia",
|
|
1338
|
-
"platform.angular_components.country_name_kr": "Coreia do Sul",
|
|
1339
|
-
"platform.angular_components.country_name_se": "Suécia",
|
|
1340
|
-
"platform.angular_components.country_name_tj": "Tajiquistão",
|
|
1341
|
-
"platform.angular_components.country_name_tk": "Tokelau",
|
|
1342
|
-
"platform.angular_components.country_name_tr": "Turquia",
|
|
1343
|
-
"platform.angular_components.country_name_tm": "Turquemenistão",
|
|
1344
|
-
"platform.angular_components.country_name_uz": "Uzbequistão",
|
|
1345
|
-
"platform.angular_components.country_name_ve": "Venezuela",
|
|
1346
|
-
"platform.angular_components.date_modified_custom_blob": "Enviado às {{hour}}:{{minutes}} de {{day}}/{{month}}/{{fullYear}}",
|
|
1347
|
-
"platform.angular_components.available-items": "Itens disponíveis",
|
|
1348
|
-
"platform.angular_components.selected-items": "Itens selecionados",
|
|
1349
|
-
"platform.angular_components.picklist-placeholder": "Busque pelo nome ou termo",
|
|
1350
|
-
"platform.angular_components.add_all": "Adicionar todos",
|
|
1351
|
-
"platform.angular_components.remove_all": "Remover todos",
|
|
1352
|
-
"platform.angular_components.country_name_gb": "Reino Unido",
|
|
1353
|
-
"platform.angular_components.insight_footer": "Conteúdo gerado por inteligência artificial. Sujeito a imprecisões.",
|
|
1354
|
-
"platform.angular_components.text_area_speech_recognition_placeholder": "Preencha o campo com, pelo menos, uma frase",
|
|
1355
|
-
"platform.angular_components.text_area_before_speech": "Grave ou ouça o texto clicando nos ícones",
|
|
1356
|
-
"platform.angular_components.text_area_while_speech": "Clique novamente no ícone para finalizar",
|
|
1357
|
-
"platform.angular_components.text_area_end_speech": "Gravação finalizada",
|
|
1358
|
-
"platform.angular_components.no_microphone_permission": "O acesso ao microfone está bloqueado. Ative a permissão nas configurações do navegador para continuar usando este recurso."
|
|
1029
|
+
"tmsx_fnd.tmsx_angular_components.add": "Adicionar",
|
|
1030
|
+
"tmsx_fnd.tmsx_angular_components.audit_created_by": "Criado por {{nome}} em {{data}} às {{hora}}.",
|
|
1031
|
+
"tmsx_fnd.tmsx_angular_components.audit_modified_by": "Modificado por {{nome}} em {{data}} às {{hora}}.",
|
|
1032
|
+
"tmsx_fnd.tmsx_angular_components.audit_inactivated_by": "Inativado por {{nome}} em {{data}} às {{hora}}.",
|
|
1033
|
+
"tmsx_fnd.tmsx_angular_components.condicao_valor_lookup_condicional_no_audit": "Sem informações de auditoria",
|
|
1034
|
+
"tmsx_fnd.tmsx_angular_components.delete": "Excluir",
|
|
1035
|
+
"tmsx_fnd.tmsx_angular_components.edit": "Editar",
|
|
1036
|
+
"tmsx_fnd.tmsx_angular_components.error_forbidden_description": "Você não tem permissão para acessar este recurso.",
|
|
1037
|
+
"tmsx_fnd.tmsx_angular_components.error_forbidden_title": "Acesso Negado",
|
|
1038
|
+
"tmsx_fnd.tmsx_angular_components.error_not_found_description": "O recurso solicitado não foi encontrado.",
|
|
1039
|
+
"tmsx_fnd.tmsx_angular_components.error_not_found_title": "Não Encontrado",
|
|
1040
|
+
"tmsx_fnd.tmsx_angular_components.error_unauthorized_description": "Você não está autorizado a acessar este recurso.",
|
|
1041
|
+
"tmsx_fnd.tmsx_angular_components.error_unauthorized_title": "Não Autorizado",
|
|
1042
|
+
"tmsx_fnd.tmsx_angular_components.grid_aninhada": "Grid Aninhada",
|
|
1043
|
+
"tmsx_fnd.tmsx_angular_components.grid_editable_nested_calendar_required": "É necessário informar a data",
|
|
1044
|
+
"tmsx_fnd.tmsx_angular_components.grid_editable_nested_cancelar": "Cancelar",
|
|
1045
|
+
"tmsx_fnd.tmsx_angular_components.grid_editable_nested_editar": "Editar valores",
|
|
1046
|
+
"tmsx_fnd.tmsx_angular_components.grid_editable_nested_paging": "registros encontrados",
|
|
1047
|
+
"tmsx_fnd.tmsx_angular_components.grid_editable_nested_salvar": "Salvar alterações",
|
|
1048
|
+
"tmsx_fnd.tmsx_angular_components.list_grid_boolean_false": "Não",
|
|
1049
|
+
"tmsx_fnd.tmsx_angular_components.list_grid_boolean_true": "Sim",
|
|
1050
|
+
"tmsx_fnd.tmsx_angular_components.list_grid_empty_field": "Não informado",
|
|
1051
|
+
"tmsx_fnd.tmsx_angular_components.painel_processamento": "Painel de Processamento",
|
|
1052
|
+
"tmsx_fnd.tmsx_angular_components.painel_processamento_api_error": "API de envio não definida",
|
|
1053
|
+
"tmsx_fnd.tmsx_angular_components.painel_processamento_status_failed": "Ocorreu um erro",
|
|
1054
|
+
"tmsx_fnd.tmsx_angular_components.painel_processamento_status_pending": "Pendente",
|
|
1055
|
+
"tmsx_fnd.tmsx_angular_components.painel_processamento_status_processing": "Processando",
|
|
1056
|
+
"tmsx_fnd.tmsx_angular_components.painel_processamento_status_success": "Finalizado com sucesso",
|
|
1057
|
+
"tmsx_fnd.tmsx_angular_components.registro": "Registro",
|
|
1058
|
+
"tmsx_fnd.tmsx_angular_components.showcase_painel_processamento_title": "Demonstração do Painel de Processamento",
|
|
1059
|
+
"tmsx_fnd.tmsx_angular_components.showcase_table_title": "Demonstração da Tabela",
|
|
1060
|
+
"tmsx_fnd.tmsx_angular_components.showcase_title": "Showcase",
|
|
1061
|
+
"tmsx_fnd.tmsx_angular_components.situacao_ativo_false": "Inativo",
|
|
1062
|
+
"tmsx_fnd.tmsx_angular_components.situacao_ativo_true": "Ativo",
|
|
1063
|
+
"tmsx_fnd.tmsx_angular_components.status": "Situação",
|
|
1064
|
+
"tmsx_fnd.tmsx_angular_components.total_records": "{{ value }} registros encontrados"
|
|
1359
1065
|
};
|
|
1360
1066
|
|
|
1361
1067
|
exports.GridEditableNestedComponent = GridEditableNestedComponent;
|