oxpi-nglib 1.0.34 → 1.0.35

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.
@@ -2578,9 +2578,9 @@ class ProdutoBuscaFiltrosDialogComponent {
2578
2578
  this.d.setting.grupos = undefined;
2579
2579
  }
2580
2580
  ngOnInit() {
2581
- this.getProdutos();
2581
+ this.getGrupos();
2582
2582
  }
2583
- getProdutos() {
2583
+ getGrupos() {
2584
2584
  this.isBusy = true;
2585
2585
  this.ws.getAllProdutoGrupo()
2586
2586
  .subscribe(r => {
@@ -5132,7 +5132,8 @@ class SuitesIntervencoesSetting extends SearchSetting {
5132
5132
  class ExportFileService {
5133
5133
  constructor() { }
5134
5134
  start(empresaNomeFile) {
5135
- this.empresaNomeFile = empresaNomeFile;
5135
+ this.empresaNomeFile = empresaNomeFile.replace(' ', "_").toLowerCase();
5136
+ ;
5136
5137
  }
5137
5138
  exportarExcel(r, fileName) {
5138
5139
  const blob = new Blob([r], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' });