@senior-gestao-empresarial/angular-components 7.27.0 → 7.27.1-feature-erpxft-557-ee30f7b4
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/senior-gestao-empresarial-angular-components.umd.js +3 -3
- package/bundles/senior-gestao-empresarial-angular-components.umd.js.map +1 -1
- package/bundles/senior-gestao-empresarial-angular-components.umd.min.js +1 -1
- package/bundles/senior-gestao-empresarial-angular-components.umd.min.js.map +1 -1
- package/esm2015/components/lookups/entities/nota-fiscal-entrada-lookup.js +2 -2
- package/esm2015/components/lookups/erp-lookups.js +3 -3
- package/esm5/components/lookups/entities/nota-fiscal-entrada-lookup.js +2 -2
- package/esm5/components/lookups/erp-lookups.js +3 -3
- package/fesm2015/senior-gestao-empresarial-angular-components.js +3 -3
- package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-angular-components.js +3 -3
- package/fesm5/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/package.json +2 -2
|
@@ -673,7 +673,7 @@
|
|
|
673
673
|
sort: sort,
|
|
674
674
|
filterQuery: filterQuery,
|
|
675
675
|
displayFields: displayFields
|
|
676
|
-
}, this.entity, options.domain || this.domain, options.service || this.service)
|
|
676
|
+
}, options.entity || this.entity, options.domain || this.domain, options.service || this.service)
|
|
677
677
|
.pipe(operators.takeUntil(this.ngUnsubscribe))
|
|
678
678
|
.pipe(operators.map(function (list) {
|
|
679
679
|
return list.contents.map(function (item) { return (__assign(__assign({}, item), { label: _this.getItemLabel(item, prefix, lookupDisplayFields) })); });
|
|
@@ -750,7 +750,7 @@
|
|
|
750
750
|
displayFields = displayFields.concat(options.queryFields);
|
|
751
751
|
displayFields = displayFields.filter(function (v, i) { return displayFields.indexOf(v) === i; });
|
|
752
752
|
this.lookupService
|
|
753
|
-
.list({ page: page, sort: sort, filterQuery: filterQuery, displayFields: displayFields }, this.entity, options.domain || this.domain, options.service || this.service)
|
|
753
|
+
.list({ page: page, sort: sort, filterQuery: filterQuery, displayFields: displayFields }, options.entity || this.entity, options.domain || this.domain, options.service || this.service)
|
|
754
754
|
.pipe(operators.takeUntil(this.ngUnsubscribe))
|
|
755
755
|
.pipe(operators.map(function (list) {
|
|
756
756
|
// Criar um mapa de campos com maxLength definido
|
|
@@ -6428,7 +6428,7 @@
|
|
|
6428
6428
|
var NotaFiscalEntradaLookup = /** @class */ (function (_super) {
|
|
6429
6429
|
__extends(NotaFiscalEntradaLookup, _super);
|
|
6430
6430
|
function NotaFiscalEntradaLookup(lookupService, translate) {
|
|
6431
|
-
var _this = _super.call(this, lookupService, translate, "
|
|
6431
|
+
var _this = _super.call(this, lookupService, translate, "notaFiscal", defaultFields$2, defaultFields$2, defaultFields$2, "erpx_sup_rcb", "nota_fiscal") || this;
|
|
6432
6432
|
_this.lookupService = lookupService;
|
|
6433
6433
|
_this.translate = translate;
|
|
6434
6434
|
return _this;
|