42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
import { Button } from "antd";
|
|
import queryString from "query-string";
|
|
import React, { useState } from "react";
|
|
import { useLocation } from "react-router-dom";
|
|
import { GenerateDocument } from "../../utils/RenderTemplate";
|
|
import { TemplateList } from "../../utils/TemplateConstants";
|
|
import { useTranslation } from "react-i18next";
|
|
import moment from "moment";
|
|
const PayrollTemplate = TemplateList("special").exported_payroll;
|
|
export default function TimeTicketsPayrollTable() {
|
|
const searchParams = queryString.parse(useLocation().search);
|
|
const { start, end } = searchParams;
|
|
const { t } = useTranslation();
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const handleClick = async () => {
|
|
setLoading(true);
|
|
|
|
await GenerateDocument(
|
|
{
|
|
name: PayrollTemplate.key,
|
|
variables: {
|
|
start: start
|
|
? start
|
|
: moment().startOf("week").subtract(7, "days").format("YYYY-MM-DD"),
|
|
end: end ? end : moment().endOf("week").format("YYYY-MM-DD"),
|
|
},
|
|
},
|
|
{},
|
|
"x"
|
|
);
|
|
|
|
setLoading(false);
|
|
};
|
|
|
|
return (
|
|
<Button loading={loading} onClick={handleClick}>
|
|
{t("printcenter.payments.exported_payroll")}
|
|
</Button>
|
|
);
|
|
}
|