@senior-gestao-empresarial/erpx-components 4.9.1-develop-8091f47a → 4.9.1-develop-720b37a0

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.
@@ -28902,9 +28902,7 @@ let ErpTributosComponent = class ErpTributosComponent {
28902
28902
  tributo === EnumTipoTributo.CBS_ESTORNO_CREDITO ||
28903
28903
  tributo === EnumTipoTributo.IBS_ESTORNO_CREDITO ||
28904
28904
  tributo === EnumTipoTributo.CBS_AJUSTE ||
28905
- tributo === EnumTipoTributo.IBS_AJUSTE ||
28906
- tributo === EnumTipoTributo.CBS_TRANSFERENCIA_CREDITO ||
28907
- tributo === EnumTipoTributo.IBS_TRANSFERENCIA_CREDITO)
28905
+ tributo === EnumTipoTributo.IBS_AJUSTE)
28908
28906
  defaultFilter = [
28909
28907
  ...defaultFilter,
28910
28908
  {
@@ -28923,13 +28921,15 @@ let ErpTributosComponent = class ErpTributosComponent {
28923
28921
  ? EnumLogicalOperator.Eq
28924
28922
  : EnumLogicalOperator.Ne,
28925
28923
  values: [EnumIndicativoPadrao.EXIGE]
28926
- },
28924
+ }
28925
+ ];
28926
+ if (tributo === EnumTipoTributo.CBS_TRANSFERENCIA_CREDITO ||
28927
+ tributo === EnumTipoTributo.IBS_TRANSFERENCIA_CREDITO)
28928
+ defaultFilter = [
28929
+ ...defaultFilter,
28927
28930
  {
28928
28931
  field: 'indGTransfCred',
28929
- operator: tributo === EnumTipoTributo.CBS_TRANSFERENCIA_CREDITO ||
28930
- tributo === EnumTipoTributo.IBS_TRANSFERENCIA_CREDITO
28931
- ? EnumLogicalOperator.Eq
28932
- : EnumLogicalOperator.Ne,
28932
+ operator: EnumLogicalOperator.Eq,
28933
28933
  values: [EnumIndicativoPadrao.EXIGE]
28934
28934
  }
28935
28935
  ];