Skip to content

Commit

Permalink
Issue #445: Backoffice: Gestione idFlusso non univoco in FR
Browse files Browse the repository at this point in the history
  • Loading branch information
atatarelli committed Jan 19, 2022
1 parent 4a488b7 commit 8b1d500
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class RendicontazioniViewComponent implements IModalDialog, IExport, Afte
}

protected dettaglioEvento() {
let _url = UtilService.URL_RENDICONTAZIONI+'/'+UtilService.EncodeURIComponent(this.json.idFlusso)+'/'+this.json.dataFlusso;
let _url = UtilService.URL_RENDICONTAZIONI+'/'+UtilService.EncodeURIComponent(this.json.idDominio)+'/'+UtilService.EncodeURIComponent(this.json.idFlusso)+'/'+this.json.dataFlusso;
this.gps.getDataService(_url).subscribe(
function (_response) {
this.json = _response.body;
Expand Down Expand Up @@ -117,7 +117,7 @@ export class RendicontazioniViewComponent implements IModalDialog, IExport, Afte
let folders: string[] = [];
let names: string[] = [];

urls.push(UtilService.URL_RENDICONTAZIONI+'/'+this.json.idFlusso+'/'+this.json.dataFlusso);
urls.push(UtilService.URL_RENDICONTAZIONI+'/'+this.json.idDominio+'/'+this.json.idFlusso+'/'+this.json.dataFlusso);
names.push('Flusso_' + this.json.idFlusso.toString() + '.xml');
contents.push('application/xml');
types.push('text');
Expand Down

0 comments on commit 8b1d500

Please sign in to comment.