@senior-gestao-empresarial/angular-components 7.6.0 → 7.7.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/senior-gestao-empresarial-angular-components.umd.js +78 -1
- 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/components/lookups/entities/origem-mercadoria-lookup.d.ts +8 -0
- package/components/lookups/index.d.ts +1 -0
- package/core/enums/enum-origem-mercadoria-imposto.d.ts +6 -0
- package/esm2015/components/lookups/entities/origem-mercadoria-lookup.js +71 -0
- package/esm2015/components/lookups/erp-lookups.module.js +4 -2
- package/esm2015/components/lookups/index.js +2 -1
- package/esm2015/core/enums/enum-origem-mercadoria-imposto.js +8 -0
- package/esm5/components/lookups/entities/origem-mercadoria-lookup.js +77 -0
- package/esm5/components/lookups/erp-lookups.module.js +4 -2
- package/esm5/components/lookups/index.js +2 -1
- package/esm5/core/enums/enum-origem-mercadoria-imposto.js +8 -0
- package/fesm2015/senior-gestao-empresarial-angular-components.js +72 -2
- package/fesm2015/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/fesm5/senior-gestao-empresarial-angular-components.js +78 -2
- package/fesm5/senior-gestao-empresarial-angular-components.js.map +1 -1
- package/package.json +1 -1
- package/senior-gestao-empresarial-angular-components.metadata.json +1 -1
|
@@ -6897,6 +6897,81 @@ var E041CebLookup = /** @class */ (function (_super) {
|
|
|
6897
6897
|
return E041CebLookup;
|
|
6898
6898
|
}(ErpLookups));
|
|
6899
6899
|
|
|
6900
|
+
var EnumOrigemMercadoriaImposto;
|
|
6901
|
+
(function (EnumOrigemMercadoriaImposto) {
|
|
6902
|
+
EnumOrigemMercadoriaImposto["CBS"] = "CBS";
|
|
6903
|
+
EnumOrigemMercadoriaImposto["IBS_ESTADUAL"] = "IBS_ESTADUAL";
|
|
6904
|
+
EnumOrigemMercadoriaImposto["IBS_MUNICIPAL"] = "IBS_MUNICIPAL";
|
|
6905
|
+
EnumOrigemMercadoriaImposto["IS"] = "IS";
|
|
6906
|
+
})(EnumOrigemMercadoriaImposto || (EnumOrigemMercadoriaImposto = {}));
|
|
6907
|
+
|
|
6908
|
+
var getEnumOrigemMercadoriaImpostoOptions = function (_a) {
|
|
6909
|
+
var translateService = _a.translateService;
|
|
6910
|
+
return getOptionsFromEnum(translateService, "erpx_cpl_imp.cadastros.enum_origem_mercadoria_", [
|
|
6911
|
+
EnumOrigemMercadoriaImposto.CBS,
|
|
6912
|
+
EnumOrigemMercadoriaImposto.IBS_ESTADUAL,
|
|
6913
|
+
EnumOrigemMercadoriaImposto.IBS_MUNICIPAL,
|
|
6914
|
+
EnumOrigemMercadoriaImposto.IS,
|
|
6915
|
+
]);
|
|
6916
|
+
};
|
|
6917
|
+
var ɵ0$3 = getEnumOrigemMercadoriaImpostoOptions;
|
|
6918
|
+
var OrigemMercadoriaLookup = /** @class */ (function (_super) {
|
|
6919
|
+
__extends(OrigemMercadoriaLookup, _super);
|
|
6920
|
+
function OrigemMercadoriaLookup(lookupService, translateService) {
|
|
6921
|
+
var _this = _super.call(this, lookupService, translateService, "origemMercadoria", [
|
|
6922
|
+
{
|
|
6923
|
+
name: "codigo",
|
|
6924
|
+
type: FieldType.String,
|
|
6925
|
+
},
|
|
6926
|
+
{
|
|
6927
|
+
name: "descricao",
|
|
6928
|
+
type: FieldType.String,
|
|
6929
|
+
},
|
|
6930
|
+
], [
|
|
6931
|
+
{
|
|
6932
|
+
name: "codigo",
|
|
6933
|
+
type: FieldType.String,
|
|
6934
|
+
},
|
|
6935
|
+
{
|
|
6936
|
+
name: "descricao",
|
|
6937
|
+
type: FieldType.String,
|
|
6938
|
+
},
|
|
6939
|
+
{
|
|
6940
|
+
name: "imposto",
|
|
6941
|
+
type: FieldType.Enum,
|
|
6942
|
+
showClear: true,
|
|
6943
|
+
options: getEnumOrigemMercadoriaImpostoOptions({ translateService: translateService }),
|
|
6944
|
+
},
|
|
6945
|
+
], [
|
|
6946
|
+
{
|
|
6947
|
+
name: "codigo",
|
|
6948
|
+
type: FieldType.String,
|
|
6949
|
+
},
|
|
6950
|
+
{
|
|
6951
|
+
name: "descricao",
|
|
6952
|
+
type: FieldType.String,
|
|
6953
|
+
},
|
|
6954
|
+
{
|
|
6955
|
+
name: "imposto",
|
|
6956
|
+
type: FieldType.Enum,
|
|
6957
|
+
showClear: true,
|
|
6958
|
+
options: getEnumOrigemMercadoriaImpostoOptions({ translateService: translateService }),
|
|
6959
|
+
},
|
|
6960
|
+
], "erpx_cpl_imp", "cadastros") || this;
|
|
6961
|
+
_this.lookupService = lookupService;
|
|
6962
|
+
_this.translateService = translateService;
|
|
6963
|
+
return _this;
|
|
6964
|
+
}
|
|
6965
|
+
OrigemMercadoriaLookup.ctorParameters = function () { return [
|
|
6966
|
+
{ type: ErpLookupsService },
|
|
6967
|
+
{ type: TranslateService }
|
|
6968
|
+
]; };
|
|
6969
|
+
OrigemMercadoriaLookup = __decorate([
|
|
6970
|
+
Injectable()
|
|
6971
|
+
], OrigemMercadoriaLookup);
|
|
6972
|
+
return OrigemMercadoriaLookup;
|
|
6973
|
+
}(ErpLookups));
|
|
6974
|
+
|
|
6900
6975
|
var ErpLookupsModule = /** @class */ (function () {
|
|
6901
6976
|
function ErpLookupsModule() {
|
|
6902
6977
|
}
|
|
@@ -7025,7 +7100,8 @@ var ErpLookupsModule = /** @class */ (function () {
|
|
|
7025
7100
|
NbsLookup,
|
|
7026
7101
|
CaracteristicaFiscalLookup,
|
|
7027
7102
|
OrigemDestinoLookup,
|
|
7028
|
-
E041CebLookup
|
|
7103
|
+
E041CebLookup,
|
|
7104
|
+
OrigemMercadoriaLookup,
|
|
7029
7105
|
],
|
|
7030
7106
|
declarations: [],
|
|
7031
7107
|
exports: [],
|
|
@@ -8453,5 +8529,5 @@ var ModulesEnum;
|
|
|
8453
8529
|
* Generated bundle index. Do not edit.
|
|
8454
8530
|
*/
|
|
8455
8531
|
|
|
8456
|
-
export { AgreementLookup, BankLookup, BeneficioFiscalLookup, BreadcrumbComponent, BreadcrumbModule, Breakpoints, CaracteristicaFiscalLookup, ComposicaoBaseCalculoLookup, ContaInternaFilialLookup, CountryLookup, CplTriNotaSaidaE001EndLookup, CplTriNotaSaidaE001PesLookup, CplTriNotaSaidaE001TnsLookup, CplTriNotaSaidaE007UfsLookup, CplTriNotaSaidaE008RaiLookup, CplTriNotaSaidaE015MedLookup, CplTriNotaSaidaE020SnfLookup, CplTriNotaSaidaE024MsgLookup, CplTriNotaSaidaE028CpgLookup, CplTriNotaSaidaE032EdcLookup, CplTriNotaSaidaE051DisLookup, CplTriNotaSaidaE066FpgLookup, CplTriNotaSaidaE070EmpLookup, CplTriNotaSaidaE070FilLookup, CplTriNotaSaidaE075DerLookup, CplTriNotaSaidaE080SerLookup, CplTriNotaSaidaNaturezaReceitaPisCofinsLookup, CplTriNotaSaidaNcmLookup, CplTriNotaSaidaNfEntradaLookup, CplTriNotaSaidaNfSaidaLookup, CurrencyLookup, DocumentoLookup, E001EndLookup, E001PesLookup, E001TnsLookup, E001TnsSupEstLookup, E002TptLookup, E006PaiLookup, E007UfsLookup, E008CepLookup, E008RaiLookup, E012FamLookup, E015MedLookup, E020SnfLookup, E021MotLookup, E023CrpLookup, E024MsgLookup, E027EqiLookup, E027StrLookup, E028CpgLookup, E030AgeLookup, E030BanLookup, E031MoeLookup, E032EdcLookup, E034TccLookup, E035OcrLookup, E036InsLookup, E039PorLookup, E041CebLookup, E043MpcLookup, E043PcmLookup, E044CcuFinRatDepLookup, E044CcuLookup, E045PlaLookup, E046HpdLookup, E047NtgLookup, E048FctLookup, E048SfcLookup, E051DisLookup, E066FpgLookup, E067FinLookup, E069GreLookup, E070EmpLookup, E070EntLookup, E070FilLookup, E073PesLookup, E073VeiLookup, E075DerLookup, E080SerLookup, E081TabLookup, E082TprLookup, E085PesLookup, E089DocLookup, E090HrpComGerLookup, E090PesLookup, E091PlfFinRatLookup, E095PesLookup, E099UsuComGerLookup, E099UsuSupCprLookup, E140InsLookup, E140NfsLookup, E200LotLookup, E200SerLookup, E205DepLookup, E210DxpE075DerLookup, E210DxpLookup, E301TcrLookup, E403FprLookup, E420IcpLookup, E420IpcLookup, E420OcpLookup, E501TcpLookup, E600CcoLookup, E640LotLookup, EntityPersonProductLookup, EnumLogicalOperator, EquipmentLookup, ErpLookups, ErpLookupsModule, ErpPolling, ExportUtils, FiltersStorageService, FormUtilsService, HTTP_STATUS_CODE, LeiComplementar1162003Lookup, LigacaoItemFornecedorLookup, LookupValidationUtils, ModulesEnum, NbsLookup, NcmLookup, NotaFiscalEntradaLookup, NpsService, OperacoesLookup, OrigemDestinoLookup, ParametersLookup, PrimitiveManager, ProdutoServicoLookup, QuantidadeDisponivelDemandaLookup, RequisicaoLookup, SegmentoLookup, TypeTaxesLookup, UnidadeMedidaLookup, UtilsModule, VerifyModulePermission, VerifyModulePermissions, WebsocketService, naturezaReceitaPisCofins, ɵ0, ɵ1, ɵ2, ErpLookupsService as ɵa, EnumAnaSin as ɵb, EnumNatCtb as ɵc, StorageService as ɵd, UserInformationService as ɵe, VerifyModulePermissionService as ɵf, VerifyModulePermissionsService as ɵg };
|
|
8532
|
+
export { AgreementLookup, BankLookup, BeneficioFiscalLookup, BreadcrumbComponent, BreadcrumbModule, Breakpoints, CaracteristicaFiscalLookup, ComposicaoBaseCalculoLookup, ContaInternaFilialLookup, CountryLookup, CplTriNotaSaidaE001EndLookup, CplTriNotaSaidaE001PesLookup, CplTriNotaSaidaE001TnsLookup, CplTriNotaSaidaE007UfsLookup, CplTriNotaSaidaE008RaiLookup, CplTriNotaSaidaE015MedLookup, CplTriNotaSaidaE020SnfLookup, CplTriNotaSaidaE024MsgLookup, CplTriNotaSaidaE028CpgLookup, CplTriNotaSaidaE032EdcLookup, CplTriNotaSaidaE051DisLookup, CplTriNotaSaidaE066FpgLookup, CplTriNotaSaidaE070EmpLookup, CplTriNotaSaidaE070FilLookup, CplTriNotaSaidaE075DerLookup, CplTriNotaSaidaE080SerLookup, CplTriNotaSaidaNaturezaReceitaPisCofinsLookup, CplTriNotaSaidaNcmLookup, CplTriNotaSaidaNfEntradaLookup, CplTriNotaSaidaNfSaidaLookup, CurrencyLookup, DocumentoLookup, E001EndLookup, E001PesLookup, E001TnsLookup, E001TnsSupEstLookup, E002TptLookup, E006PaiLookup, E007UfsLookup, E008CepLookup, E008RaiLookup, E012FamLookup, E015MedLookup, E020SnfLookup, E021MotLookup, E023CrpLookup, E024MsgLookup, E027EqiLookup, E027StrLookup, E028CpgLookup, E030AgeLookup, E030BanLookup, E031MoeLookup, E032EdcLookup, E034TccLookup, E035OcrLookup, E036InsLookup, E039PorLookup, E041CebLookup, E043MpcLookup, E043PcmLookup, E044CcuFinRatDepLookup, E044CcuLookup, E045PlaLookup, E046HpdLookup, E047NtgLookup, E048FctLookup, E048SfcLookup, E051DisLookup, E066FpgLookup, E067FinLookup, E069GreLookup, E070EmpLookup, E070EntLookup, E070FilLookup, E073PesLookup, E073VeiLookup, E075DerLookup, E080SerLookup, E081TabLookup, E082TprLookup, E085PesLookup, E089DocLookup, E090HrpComGerLookup, E090PesLookup, E091PlfFinRatLookup, E095PesLookup, E099UsuComGerLookup, E099UsuSupCprLookup, E140InsLookup, E140NfsLookup, E200LotLookup, E200SerLookup, E205DepLookup, E210DxpE075DerLookup, E210DxpLookup, E301TcrLookup, E403FprLookup, E420IcpLookup, E420IpcLookup, E420OcpLookup, E501TcpLookup, E600CcoLookup, E640LotLookup, EntityPersonProductLookup, EnumLogicalOperator, EquipmentLookup, ErpLookups, ErpLookupsModule, ErpPolling, ExportUtils, FiltersStorageService, FormUtilsService, HTTP_STATUS_CODE, LeiComplementar1162003Lookup, LigacaoItemFornecedorLookup, LookupValidationUtils, ModulesEnum, NbsLookup, NcmLookup, NotaFiscalEntradaLookup, NpsService, OperacoesLookup, OrigemDestinoLookup, OrigemMercadoriaLookup, ParametersLookup, PrimitiveManager, ProdutoServicoLookup, QuantidadeDisponivelDemandaLookup, RequisicaoLookup, SegmentoLookup, TypeTaxesLookup, UnidadeMedidaLookup, UtilsModule, VerifyModulePermission, VerifyModulePermissions, WebsocketService, naturezaReceitaPisCofins, ɵ0, ɵ1, ɵ2, ErpLookupsService as ɵa, EnumAnaSin as ɵb, EnumNatCtb as ɵc, StorageService as ɵd, UserInformationService as ɵe, VerifyModulePermissionService as ɵf, VerifyModulePermissionsService as ɵg };
|
|
8457
8533
|
//# sourceMappingURL=senior-gestao-empresarial-angular-components.js.map
|