Skip to content

Commit

Permalink
Merge pull request #37 from chiranjib693/master
Browse files Browse the repository at this point in the history
Updated path
  • Loading branch information
avikganguly01 authored Aug 3, 2022
2 parents bb984b2 + 24867d0 commit def43cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@
ngModel
matNativeControl
>
<option value="">STATUS</option>
<option value="ACCEPTED">ACCEPTED</option>
<option value="FAILED">Declined</option>
<option value="FAILED">FAILED</option>
</select>
</mat-form-field>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ export class IncomingRequestExportComponent implements OnInit {
}
exportCSV(filterBy: any, filterName: string) {
const exportURl =
"api/v1/transactionRequests?command=export&state=" +
"/api/v1/transactionRequests?command=export&state=" +
filterBy.cars +
"&startTo=" +
filterBy.startdate;
var postData = {
transactionId: filterBy.transactionid.split(","),
externalid: filterBy.externalid.split(","),
payeeid: filterBy.workflowinstancekey.split(","),
workflowinstancekey: filterBy.workflowinstancekey.split(","),
};

console.log(Object.values(postData).toString().split(","));
Expand Down

0 comments on commit def43cd

Please sign in to comment.