Commit cb78d3c1 authored by Deni Rinaldi's avatar Deni Rinaldi

donlotUnitBisnis

parent 34dd923a
...@@ -249,6 +249,21 @@ export default class UnitBisnis extends Component { ...@@ -249,6 +249,21 @@ export default class UnitBisnis extends Component {
} }
} }
downloadDataTable = async () => {
let res = await fetch(
"https://trftia.eksad.com/tia-reporting-dev/public/business_unit/export_business_unit"
)
res = await res.blob()
console.log(res)
if (res.size > 0) {
let url = window.URL.createObjectURL(res);
let a = document.createElement('a');
a.href = url;
a.download = 'Business Unit.xlsx';
a.click();
}
}
render() { render() {
const columns = [{ const columns = [{
name: "Action", name: "Action",
...@@ -361,7 +376,7 @@ export default class UnitBisnis extends Component { ...@@ -361,7 +376,7 @@ export default class UnitBisnis extends Component {
borderColor: 'transparent', borderColor: 'transparent',
margin: 5 margin: 5
}} }}
onClick={() => null} onClick={() => this.downloadDataTable()}
> >
<img src={Images.download} /> <img src={Images.download} />
</button> </button>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment