bug fixes and pdf generation per user

dilmurod
Dilmurod 2 weeks ago
parent a612475609
commit c06c96e5c9

@ -14,8 +14,13 @@ import {
Typography,
} from "antd";
import React, { useEffect, useRef, useState } from "react";
import dayjs from "dayjs";
import "dayjs/locale/en";
import localizedFormat from "dayjs/plugin/localizedFormat";
import tagIcon from "../../assets/tagIcon.svg";
import {
CheckOutlined,
CloseOutlined,
DeleteOutlined,
DollarOutlined,
@ -27,7 +32,7 @@ import {
} from "@ant-design/icons";
import { theme } from "antd";
import { useAccountingData } from "../../Hooks/Accounting";
import moment, { Moment } from "moment";
import moment from "moment";
import api from "../../API/api";
import { useTeamData } from "../../Hooks/Teams";
@ -48,6 +53,7 @@ interface BonusesTableProps {
}
const AccountingCurrent: React.FC = () => {
dayjs.extend(localizedFormat);
const themes = localStorage.getItem("theme") === "true" ? true : false;
const [open, setOpen] = useState(false);
@ -57,11 +63,18 @@ const AccountingCurrent: React.FC = () => {
const { Option } = Select;
const currentMonth = moment().month();
const currentYear = moment().year();
const today = moment().endOf("day");
// const currentMonth = moment().month();
// const currentYear = moment().year();
// const today = moment().endOf("day");
const currentMonth = dayjs().month(); // Hozirgi oy
const currentYear = dayjs().year(); // Hozirgi yil
const today = dayjs().endOf("day");
// const date = dayjs(new Date()); // new Date() ni dayjs bilan o'rnating
// const formattedDate = date.locale("en").format("YYYY-MM-DD");
const disabledDate = (current: any) => {
const disabledDate = (current: dayjs.Dayjs) => {
return (
current &&
(current.month() !== currentMonth ||
@ -70,9 +83,11 @@ const AccountingCurrent: React.FC = () => {
);
};
const [form] = Form.useForm();
const [selectedUserId, setSelectedUserId] = useState(null);
const [selectedDate, setSelectedDate] = useState<Moment | null>(null);
// const [selectedDate, setSelectedDate] = useState<Moment | null>(null);
const [selectedDate, setSelectedDate] = useState<dayjs.Dayjs | null>(null);
const [form] = Form.useForm();
const [isBonusModalVisible, setIsBonusModalVisible] = useState(false);
const [isChargeModalVisible, setIsChargeModalVisible] = useState(false);
@ -104,9 +119,9 @@ const AccountingCurrent: React.FC = () => {
team: team,
});
const handleDateChange = (date: any) => {
const handleDateChange = (date: dayjs.Dayjs | null) => {
setSelectedDate(date);
form.setFieldsValue({ date }); // Form.Item ichidagi qiymatni yangilash
form.setFieldsValue({ date });
};
const handleOkCharge = () => {
@ -115,10 +130,14 @@ const AccountingCurrent: React.FC = () => {
.then((values) => {
const { date, amount, notes } = values;
const formattedDate = selectedDate
? selectedDate.format("YYYY-MM-DD")
: null;
if (selectedUserId) {
api
.post(`/add-charge/${selectedUserId}/`, {
date: date ? date.toISOString().split("T")[0] : null,
date: formattedDate,
amount: amount,
reason: notes,
})
@ -143,10 +162,14 @@ const AccountingCurrent: React.FC = () => {
.then((values) => {
const { date, amount, notes } = values;
const formattedDate = selectedDate
? selectedDate.format("YYYY-MM-DD")
: null;
if (selectedUserId) {
api
.post(`/add-bonus/${selectedUserId}/`, {
date: date ? date.toISOString().split("T")[0] : null,
date: formattedDate,
amount: amount,
reason: notes,
})
@ -199,7 +222,6 @@ const AccountingCurrent: React.FC = () => {
api
.get(apiUrl, { params })
.then((response) => {
console.log("API response:", response);
const formattedData = response.data?.bonuses?.map(
(bonus: any, index: any) => ({
no: index + 1,
@ -225,7 +247,7 @@ const AccountingCurrent: React.FC = () => {
(charges: any, index: any) => ({
no: index + 1,
id: charges.id,
// date: charges.date,
date: charges.date,
amount: charges.amount,
reason: charges.reason || "",
username: response.data.employee.username,
@ -260,8 +282,10 @@ const AccountingCurrent: React.FC = () => {
return;
}
const { date, ...fieldsWithoutDate } = record;
setSelectedRecordBonus(record);
form.setFieldsValue(record);
form.setFieldsValue(fieldsWithoutDate);
setIsEditBonusModalVisible(true);
};
const showModal = (record: any) => {
@ -270,8 +294,11 @@ const AccountingCurrent: React.FC = () => {
return;
}
const { date, ...fieldsWithoutDate } = record;
setSelectedRecord(record);
form.setFieldsValue(record);
form.setFieldsValue(fieldsWithoutDate);
setIsEditModalVisible(true);
};
@ -281,6 +308,52 @@ const AccountingCurrent: React.FC = () => {
form.resetFields();
};
// const handleOkBonusEdit = async () => {
// try {
// const values = await form.validateFields();
// console.log(values);
// if (!selectedRecordBonus) {
// throw new Error("No record selected!");
// }
// const updatedData = {
// ...(selectedRecordBonus || {}),
// ...values,
// };
// const response = await api.put(
// `bonus/${selectedRecordBonus.id}/`,
// updatedData,
// {
// headers: {
// "Content-Type": "application/json",
// },
// }
// );
// if (response.status === 202) {
// setBonusesData((prevData: any) =>
// prevData.map((item: any) =>
// item.id === selectedRecordBonus.id
// ? { ...item, ...updatedData }
// : item
// )
// );
// refetch();
// setIsEditBonusModalVisible(false);
// } else {
// throw new Error("Server Error");
// }
// } catch (error) {
// console.error(error);
// }
// };
// EDIT modal Charge
const handleOkBonusEdit = async () => {
try {
const values = await form.validateFields();
@ -289,7 +362,11 @@ const AccountingCurrent: React.FC = () => {
throw new Error("No record selected!");
}
const updatedData = { ...(selectedRecordBonus || {}), ...values };
// Faqat kerakli maydonlarni olish
const updatedData = {
amount: values.amount,
reason: values.reason, // Formda `notes` deb saqlanayotgan bolsa
};
const response = await api.put(
`bonus/${selectedRecordBonus.id}/`,
@ -320,7 +397,46 @@ const AccountingCurrent: React.FC = () => {
}
};
// EDIT modal Charge
// const handleOk = async () => {
// try {
// const values = await form.validateFields();
// if (!selectedRecord) {
// throw new Error("No record selected!");
// }
// const updatedData = {
// ...(selectedRecord || {}),
// ...values,
// };
// const response = await api.put(
// `charge/${selectedRecord.id}/`,
// updatedData,
// {
// headers: {
// "Content-Type": "application/json",
// },
// }
// );
// if (response.status === 202) {
// setChargesData((prevData: any) =>
// prevData.map((item: any) =>
// item.id === selectedRecord.id ? { ...item, ...updatedData } : item
// )
// );
// refetch();
// setIsEditModalVisible(false);
// } else {
// throw new Error("Server Error");
// }
// } catch (error) {
// console.error(error);
// }
// };
const handleOk = async () => {
try {
const values = await form.validateFields();
@ -329,9 +445,10 @@ const AccountingCurrent: React.FC = () => {
throw new Error("No record selected!");
}
// Faqat kerakli maydonlarni olish (masalan, `amount` va `reason`)
const updatedData = {
...(selectedRecord || {}),
...values,
amount: values.amount,
reason: values.reason,
};
const response = await api.put(
@ -474,6 +591,7 @@ const AccountingCurrent: React.FC = () => {
title: "Username",
dataIndex: "username",
key: "username",
sorter: (a, b) => a.username.localeCompare(b.username),
render: (text, record) => (
<Tooltip
title={
@ -561,6 +679,8 @@ const AccountingCurrent: React.FC = () => {
{
title: "Base Salary",
dataIndex: "salary_base_amount",
sorter: (a: any, b: any) =>
a.salary_base_amount - b.salary_base_amount,
render: (text: string, record: any) => (
<p>${record?.salary_base_amount}</p>
),
@ -568,6 +688,8 @@ const AccountingCurrent: React.FC = () => {
{
title: "Performance Salary",
dataIndex: "performance_salary",
sorter: (a: any, b: any) =>
a.performance_salary - b.performance_salary,
render: (text: string, record: any) => (
<p>${record?.performance_salary}</p>
),
@ -575,6 +697,8 @@ const AccountingCurrent: React.FC = () => {
{
title: "Charges",
dataIndex: "total_charges",
sorter: (a: any, b: any) => a.total_charges - b.total_charges,
render: (text: string, record: any) => (
<p>${record?.total_charges}</p>
),
@ -582,6 +706,7 @@ const AccountingCurrent: React.FC = () => {
{
title: "Bonuses",
dataIndex: "total_bonuses",
sorter: (a: any, b: any) => a.total_bonuses - b.total_bonuses,
render: (text: string, record: any) => (
<p>${record?.total_bonuses}</p>
),
@ -597,6 +722,7 @@ const AccountingCurrent: React.FC = () => {
),
dataIndex: "salary",
key: "salary",
sorter: (a: any, b: any) => a.salary - b.salary,
render: (text: string, record: any) => (
<span>${record.salary}</span>
),
@ -899,7 +1025,7 @@ const AccountingCurrent: React.FC = () => {
disabledDate={disabledDate}
format="YYYY MMMM DD"
onChange={handleDateChange}
// value={selectedDate ? dayjs(selectedDate) : null}
value={selectedDate ? selectedDate : null}
/>
</Form.Item>
@ -961,7 +1087,7 @@ const AccountingCurrent: React.FC = () => {
disabledDate={disabledDate}
format="YYYY MMMM DD"
onChange={handleDateChange}
// value={selectedDate ? dayjs(selectedDate) : null}
value={selectedDate ? selectedDate : null}
/>
</Form.Item>
@ -1001,7 +1127,7 @@ const AccountingCurrent: React.FC = () => {
maskClosable={false}
okText={
<span>
<PlusOutlined style={{ marginRight: 4 }} />
<CheckOutlined style={{ marginRight: 4 }} />
Save
</span>
}
@ -1048,7 +1174,7 @@ const AccountingCurrent: React.FC = () => {
maskClosable={false}
okText={
<span>
<PlusOutlined style={{ marginRight: 4 }} />
<CheckOutlined style={{ marginRight: 4 }} />
Save
</span>
}

@ -3,6 +3,7 @@ import {
Drawer,
Input,
Select,
Spin,
Table,
Tooltip,
Typography,
@ -11,6 +12,7 @@ import React, { useEffect, useRef, useState } from "react";
import tagIcon from "../../assets/tagIcon.svg";
import {
CloseOutlined,
EyeOutlined,
QuestionCircleOutlined,
SearchOutlined,
} from "@ant-design/icons";
@ -31,6 +33,7 @@ interface Salary {
base_salary: string;
performance_salary: string;
total_salary: string;
salary_document_path: string;
}
interface Employee {
@ -64,6 +67,8 @@ const AccountingHistory: React.FC = () => {
const [selectedUser, setSelectedUser] = useState<any>(null);
const [loading, setLoading] = useState(false);
const handleRowClick = async (record: any, e: any) => {
setSelectedUser(record);
setOpen(true);
@ -80,6 +85,8 @@ const AccountingHistory: React.FC = () => {
setYears(newYears);
} catch (error) {
console.error(error);
} finally {
setLoading(false); // Loading holatini o'chirish
}
};
@ -163,6 +170,7 @@ const AccountingHistory: React.FC = () => {
title: "Username",
dataIndex: "username",
key: "username",
sorter: (a, b) => a.username.localeCompare(b.username),
render: (text, record) => (
<Tooltip
title={
@ -276,6 +284,8 @@ const AccountingHistory: React.FC = () => {
{
title: "Base Salary",
dataIndex: "total_base_salary",
sorter: (a: any, b: any) =>
a.total_base_salary - b.total_base_salary,
render: (text: string, record: any) => (
<p>${record?.total_base_salary}</p>
),
@ -283,6 +293,8 @@ const AccountingHistory: React.FC = () => {
{
title: "Performance Salary",
dataIndex: "total_performance_salary",
sorter: (a: any, b: any) =>
a.total_performance_salary - b.total_performance_salary,
render: (text: string, record: any) => (
<p>${record?.total_performance_salary}</p>
),
@ -290,6 +302,7 @@ const AccountingHistory: React.FC = () => {
{
title: "Total Charges",
dataIndex: "total_charges",
sorter: (a: any, b: any) => a.total_charges - b.total_charges,
render: (text: string, record: any) => (
<p>${record?.total_charges}</p>
),
@ -297,6 +310,7 @@ const AccountingHistory: React.FC = () => {
{
title: "Total Bonuses",
dataIndex: "total_bonuses",
sorter: (a: any, b: any) => a.total_bonuses - b.total_bonuses,
render: (text: string, record: any) => (
<p>${record?.total_bonuses}</p>
),
@ -305,6 +319,8 @@ const AccountingHistory: React.FC = () => {
title: "Total Salary",
dataIndex: "total_earned_salary",
key: "total_earned_salary",
sorter: (a: any, b: any) =>
a.total_earned_salary - b.total_earned_salary,
render: (text: string, record: any) => (
<span>${record.total_earned_salary}</span>
),
@ -449,7 +465,7 @@ const AccountingHistory: React.FC = () => {
<div style={{ marginTop: 24 }}>
{years.length === 0 ? (
<p>No data available for the years.</p>
<Spin spinning={loading} />
) : (
years.map((year) => (
<div key={year} style={{ marginBottom: 32 }}>
@ -459,6 +475,7 @@ const AccountingHistory: React.FC = () => {
.filter((salary) => salary.year === year)
.map((filteredSalary) => (
<Table
loading={loading}
key={filteredSalary.id}
dataSource={[filteredSalary]}
columns={[
@ -493,6 +510,33 @@ const AccountingHistory: React.FC = () => {
<span>${record.total_salary}</span>
),
},
{
title: "Action",
dataIndex: "salary_document_path",
align: "center",
render: (text, record) => (
<Tooltip
title={
record.salary_document_path
? "View Document"
: "No Document"
}
>
<Button
type="primary"
icon={<EyeOutlined />}
onClick={() =>
record.salary_document_path &&
window.open(
record.salary_document_path,
"_blank"
)
}
disabled={!record.salary_document_path}
/>
</Tooltip>
),
},
]}
rowKey="id"
pagination={false}

@ -17,6 +17,7 @@ import React, { useEffect, useRef, useState } from "react";
import tagIcon from "../../assets/tagIcon.svg";
import {
CheckCircleOutlined,
CheckOutlined,
CloseOutlined,
DeleteOutlined,
DollarOutlined,
@ -32,6 +33,8 @@ import { useAccountingData } from "../../Hooks/Accounting";
import moment from "moment";
import api from "../../API/api";
import dayjs from "dayjs";
import "dayjs/locale/en";
import localizedFormat from "dayjs/plugin/localizedFormat";
import { useTeamData } from "../../Hooks/Teams";
type Employee = {
@ -51,6 +54,7 @@ interface BonusesTableProps {
}
const AccountingCurrent: React.FC = () => {
dayjs.extend(localizedFormat);
const themes = localStorage.getItem("theme") === "true" ? true : false;
const [open, setOpen] = useState(false);
@ -63,12 +67,17 @@ const AccountingCurrent: React.FC = () => {
month: "long",
});
const lastMonth = moment().subtract(1, "months").month();
const lastMonthYear = moment().subtract(1, "months").year();
// const lastMonth = moment().subtract(1, "months").month();
// const lastMonthYear = moment().subtract(1, "months").year();
// const lastMonthDefault = dayjs().subtract(1, "month");
// const today = moment().endOf("day");
const lastMonth = dayjs().subtract(1, "month").month();
const lastMonthYear = dayjs().subtract(1, "month").year();
const lastMonthDefault = dayjs().subtract(1, "month");
const today = moment().endOf("day");
const today = dayjs().endOf("day");
const disabledDate = (current: any) => {
const disabledDate = (current: dayjs.Dayjs) => {
return (
current &&
(current.month() !== lastMonth ||
@ -77,9 +86,10 @@ const AccountingCurrent: React.FC = () => {
);
};
const [form] = Form.useForm();
const [selectedUserId, setSelectedUserId] = useState(null);
const [selectedDate, setSelectedDate] = useState<moment.Moment | null>(null);
const [selectedDate, setSelectedDate] = useState<dayjs.Dayjs | null>(null);
const [form] = Form.useForm();
const [isBonusModalVisible, setIsBonusModalVisible] = useState(false);
const [isChargeModalVisible, setIsChargeModalVisible] = useState(false);
@ -111,7 +121,7 @@ const AccountingCurrent: React.FC = () => {
team: team,
});
const handleDateChange = (date: any) => {
const handleDateChange = (date: dayjs.Dayjs | null) => {
setSelectedDate(date);
form.setFieldsValue({ date });
};
@ -122,10 +132,14 @@ const AccountingCurrent: React.FC = () => {
.then((values) => {
const { date, amount, notes } = values;
const formattedDate = selectedDate
? selectedDate.format("YYYY-MM-DD")
: null;
if (selectedUserId) {
api
.post(`/add-charge/${selectedUserId}/`, {
date: date ? date.toISOString().split("T")[0] : null,
date: formattedDate,
amount: amount,
reason: notes,
})
@ -150,10 +164,14 @@ const AccountingCurrent: React.FC = () => {
.then((values) => {
const { date, amount, notes } = values;
const formattedDate = selectedDate
? selectedDate.format("YYYY-MM-DD")
: null;
if (selectedUserId) {
api
.post(`/add-bonus/${selectedUserId}/`, {
date: date ? date.toISOString().split("T")[0] : null,
date: formattedDate,
amount: amount,
reason: notes,
})
@ -210,7 +228,7 @@ const AccountingCurrent: React.FC = () => {
(bonus: any, index: any) => ({
no: index + 1,
id: bonus.id,
// date: bonus.date,
date: bonus.date,
amount: bonus.amount,
reason: bonus.reason || "",
username: response.data.employee.username,
@ -231,7 +249,7 @@ const AccountingCurrent: React.FC = () => {
(charges: any, index: any) => ({
no: index + 1,
id: charges.id,
// date: charges.date,
date: charges.date,
amount: charges.amount,
reason: charges.reason || "",
username: response.data.employee.username,
@ -266,11 +284,10 @@ const AccountingCurrent: React.FC = () => {
return;
}
// const recordWithoutDate = { ...record };
// delete recordWithoutDate.date;
const { date, ...fieldsWithoutDate } = record;
setSelectedRecordBonus(record);
form.setFieldsValue(record);
form.setFieldsValue(fieldsWithoutDate);
setIsEditBonusModalVisible(true);
};
const showModal = (record: any) => {
@ -279,11 +296,11 @@ const AccountingCurrent: React.FC = () => {
return;
}
// const recordWithoutDate = { ...record };
// delete recordWithoutDate.date;
const { date, ...fieldsWithoutDate } = record;
setSelectedRecord(record);
form.setFieldsValue(record);
form.setFieldsValue(fieldsWithoutDate);
setIsEditModalVisible(true);
};
@ -293,19 +310,65 @@ const AccountingCurrent: React.FC = () => {
form.resetFields();
};
// const handleOkBonusEdit = async () => {
// try {
// // Formani tekshirish
// const values = await form.validateFields();
// if (!selectedRecordBonus) {
// throw new Error("No record selected!");
// }
// // Obyektni biriktirish: selectedRecord va formdagi values
// const updatedData = { ...(selectedRecordBonus || {}), ...values };
// // Axios sorovini yuborish
// const response = await api.put(
// `bonus/${selectedRecordBonus.id}/`,
// updatedData,
// {
// headers: {
// "Content-Type": "application/json",
// },
// }
// );
// // Javobni tekshirish
// if (response.status === 202) {
// setBonusesData((prevData: any) =>
// prevData.map((item: any) =>
// item.id === selectedRecordBonus.id
// ? { ...item, ...updatedData }
// : item
// )
// );
// refetch();
// setIsEditBonusModalVisible(false);
// } else {
// throw new Error("Server Error");
// }
// } catch (error) {
// console.error(error);
// }
// };
// EDIT modal Charge
const handleOkBonusEdit = async () => {
try {
// Formani tekshirish
const values = await form.validateFields();
if (!selectedRecordBonus) {
throw new Error("No record selected!");
}
// Obyektni biriktirish: selectedRecord va formdagi values
const updatedData = { ...(selectedRecordBonus || {}), ...values };
// Faqat kerakli maydonlarni olish
const updatedData = {
amount: values.amount,
reason: values.reason, // Formda `notes` deb saqlanayotgan bolsa
};
// Axios sorovini yuborish
const response = await api.put(
`bonus/${selectedRecordBonus.id}/`,
updatedData,
@ -316,7 +379,6 @@ const AccountingCurrent: React.FC = () => {
}
);
// Javobni tekshirish
if (response.status === 202) {
setBonusesData((prevData: any) =>
prevData.map((item: any) =>
@ -336,7 +398,46 @@ const AccountingCurrent: React.FC = () => {
}
};
// EDIT modal Charge
// const handleOk = async () => {
// try {
// const values = await form.validateFields();
// if (!selectedRecord) {
// throw new Error("No record selected!");
// }
// const updatedData = {
// ...(selectedRecord || {}),
// ...values,
// };
// const response = await api.put(
// `charge/${selectedRecord.id}/`,
// updatedData,
// {
// headers: {
// "Content-Type": "application/json",
// },
// }
// );
// if (response.status === 202) {
// setChargesData((prevData: any) =>
// prevData.map((item: any) =>
// item.id === selectedRecord.id ? { ...item, ...updatedData } : item
// )
// );
// refetch();
// setIsEditModalVisible(false);
// } else {
// throw new Error("Server Error");
// }
// } catch (error) {
// console.error(error);
// }
// };
const handleOk = async () => {
try {
const values = await form.validateFields();
@ -345,9 +446,10 @@ const AccountingCurrent: React.FC = () => {
throw new Error("No record selected!");
}
// Faqat kerakli maydonlarni olish (`amount` va `reason` yoki `notes`)
const updatedData = {
...(selectedRecord || {}),
...values,
amount: values.amount,
reason: values.reason, // Agar `reason` bolmasa, `notes`ni ishlatish
};
const response = await api.put(
@ -424,7 +526,6 @@ const AccountingCurrent: React.FC = () => {
if (response.status === 200) {
setBonusesData((prevData: any) => {
const updatedData = prevData.filter((item: any) => item.id !== id);
console.log("Updated Data:", updatedData);
return updatedData;
});
message.success(response.data.message);
@ -446,7 +547,6 @@ const AccountingCurrent: React.FC = () => {
if (response.status === 200) {
setChargesData((prevData: any) => {
const updatedData = prevData.filter((item: any) => item.id !== id);
console.log("Updated Data:", updatedData);
return updatedData;
});
message.success(response.data.message);
@ -605,6 +705,7 @@ const AccountingCurrent: React.FC = () => {
title: "Username",
dataIndex: "username",
key: "username",
sorter: (a, b) => a.username.localeCompare(b.username),
render: (text, record) => (
<Tooltip
title={
@ -692,6 +793,8 @@ const AccountingCurrent: React.FC = () => {
{
title: "Base Salary",
dataIndex: "salary_base_amount",
sorter: (a: any, b: any) =>
a.salary_base_amount - b.salary_base_amount,
render: (text: string, record: any) => (
<p>${record?.salary_base_amount}</p>
),
@ -699,6 +802,8 @@ const AccountingCurrent: React.FC = () => {
{
title: "Performance Salary",
dataIndex: "performance_salary",
sorter: (a: any, b: any) =>
a.performance_salary - b.performance_salary,
render: (text: string, record: any) => (
<p>${record?.performance_salary}</p>
),
@ -706,6 +811,7 @@ const AccountingCurrent: React.FC = () => {
{
title: "Charges",
dataIndex: "total_charges",
sorter: (a: any, b: any) => a.total_charges - b.total_charges,
render: (text: string, record: any) => (
<p>${record?.total_charges}</p>
),
@ -713,6 +819,7 @@ const AccountingCurrent: React.FC = () => {
{
title: "Bonuses",
dataIndex: "total_bonuses",
sorter: (a: any, b: any) => a.total_bonuses - b.total_bonuses,
render: (text: string, record: any) => (
<p>${record?.total_bonuses}</p>
),
@ -721,6 +828,7 @@ const AccountingCurrent: React.FC = () => {
title: "Salary",
dataIndex: "salary",
key: "salary",
sorter: (a: any, b: any) => a.salary - b.salary,
render: (text: string, record: any) => (
<span>${record.salary}</span>
),
@ -1141,8 +1249,7 @@ const AccountingCurrent: React.FC = () => {
format="YYYY MMMM DD"
defaultPickerValue={lastMonthDefault}
onChange={handleDateChange}
// value={lastMonthDefault}
value={selectedDate ? selectedDate : null}
/>
</Form.Item>
@ -1206,7 +1313,7 @@ const AccountingCurrent: React.FC = () => {
defaultPickerValue={lastMonthDefault}
format="YYYY MMMM DD"
onChange={handleDateChange}
// value={selectedDate}
value={selectedDate ? selectedDate : null}
/>
</Form.Item>
@ -1246,7 +1353,7 @@ const AccountingCurrent: React.FC = () => {
maskClosable={false}
okText={
<span>
<PlusOutlined style={{ marginRight: 4 }} />
<CheckOutlined style={{ marginRight: 4 }} />
Save
</span>
}
@ -1293,7 +1400,7 @@ const AccountingCurrent: React.FC = () => {
maskClosable={false}
okText={
<span>
<PlusOutlined style={{ marginRight: 4 }} />
<CheckOutlined style={{ marginRight: 4 }} />
Save
</span>
}

Loading…
Cancel
Save