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.
- package/esm2020/lib/cadastros/produtos/produto-busca-filtros-dialog/produto-busca-filtros-dialog.component.mjs +3 -3
- package/esm2020/lib/providers/export.file.service.mjs +3 -2
- package/fesm2015/oxpi-nglib.mjs +4 -3
- package/fesm2015/oxpi-nglib.mjs.map +1 -1
- package/fesm2020/oxpi-nglib.mjs +4 -3
- package/fesm2020/oxpi-nglib.mjs.map +1 -1
- package/lib/cadastros/produtos/produto-busca-filtros-dialog/produto-busca-filtros-dialog.component.d.ts +1 -1
- package/package.json +1 -1
package/fesm2020/oxpi-nglib.mjs
CHANGED
|
@@ -2578,9 +2578,9 @@ class ProdutoBuscaFiltrosDialogComponent {
|
|
|
2578
2578
|
this.d.setting.grupos = undefined;
|
|
2579
2579
|
}
|
|
2580
2580
|
ngOnInit() {
|
|
2581
|
-
this.
|
|
2581
|
+
this.getGrupos();
|
|
2582
2582
|
}
|
|
2583
|
-
|
|
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' });
|