Merge branch 'develop' of https://gitlab.com/empatnusabangsa/ppob/ppob-frontend into devops-staging
This commit is contained in:
commit
425caac5bf
|
@ -10,7 +10,6 @@ import {
|
||||||
Space,
|
Space,
|
||||||
Table,
|
Table,
|
||||||
Tag,
|
Tag,
|
||||||
InputNumber,
|
|
||||||
} from "antd";
|
} from "antd";
|
||||||
import { observer } from "mobx-react-lite";
|
import { observer } from "mobx-react-lite";
|
||||||
import { ExclamationCircleOutlined } from "@ant-design/icons";
|
import { ExclamationCircleOutlined } from "@ant-design/icons";
|
||||||
|
@ -38,13 +37,13 @@ export const SupplierComponent = observer((props) => {
|
||||||
setIdData(data.id);
|
setIdData(data.id);
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleTopup = async (data) => {
|
const handleTopup = (data) => {
|
||||||
store.supplier.code = data.code;
|
console.log(data, "isi data");
|
||||||
console.log(data.code, "isi data");
|
|
||||||
form.setFieldsValue({
|
form.setFieldsValue({
|
||||||
code: data.code,
|
code: data.code,
|
||||||
});
|
});
|
||||||
store.supplier.visibleModalTransaction = true;
|
store.supplier.visibleModalTransaction = true;
|
||||||
|
store.supplier.code = data.code;
|
||||||
};
|
};
|
||||||
|
|
||||||
const changeStatus = async (id, isActive) => {
|
const changeStatus = async (id, isActive) => {
|
||||||
|
@ -55,8 +54,8 @@ export const SupplierComponent = observer((props) => {
|
||||||
const response = await store.supplier.changeStatus(id, status);
|
const response = await store.supplier.changeStatus(id, status);
|
||||||
modalLoader.setLoading(false);
|
modalLoader.setLoading(false);
|
||||||
response?.body?.statusCode === 201
|
response?.body?.statusCode === 201
|
||||||
? message.success(`Success ${status2} Supplier`)
|
? message.success(`Success ${status2} Supplier`)
|
||||||
: message.error(`Failed ${status2} Supplier`);
|
: message.error(`Failed ${status2} Supplier`);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
modalLoader.setLoading(false);
|
modalLoader.setLoading(false);
|
||||||
console.log("error", err);
|
console.log("error", err);
|
||||||
|
@ -82,10 +81,10 @@ export const SupplierComponent = observer((props) => {
|
||||||
key: ["coa", "amount"],
|
key: ["coa", "amount"],
|
||||||
width: "20%",
|
width: "20%",
|
||||||
render: (text, record) =>
|
render: (text, record) =>
|
||||||
new Intl.NumberFormat("id-ID", {
|
new Intl.NumberFormat("id-ID", {
|
||||||
style: "currency",
|
style: "currency",
|
||||||
currency: "IDR",
|
currency: "IDR",
|
||||||
}).format(text),
|
}).format(text),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Saldo di System",
|
title: "Saldo di System",
|
||||||
|
@ -93,10 +92,10 @@ export const SupplierComponent = observer((props) => {
|
||||||
key: ["coa_undistribute", "amount"],
|
key: ["coa_undistribute", "amount"],
|
||||||
width: "20%",
|
width: "20%",
|
||||||
render: (text, record) =>
|
render: (text, record) =>
|
||||||
new Intl.NumberFormat("id-ID", {
|
new Intl.NumberFormat("id-ID", {
|
||||||
style: "currency",
|
style: "currency",
|
||||||
currency: "IDR",
|
currency: "IDR",
|
||||||
}).format(text),
|
}).format(text),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Status",
|
title: "Status",
|
||||||
|
@ -104,12 +103,12 @@ export const SupplierComponent = observer((props) => {
|
||||||
key: "status",
|
key: "status",
|
||||||
width: "5%",
|
width: "5%",
|
||||||
render: (text, record) => (
|
render: (text, record) => (
|
||||||
<Tag
|
<Tag
|
||||||
color={record?.status === true ? "processing" : "#E3E8EE"}
|
color={record?.status === true ? "processing" : "#E3E8EE"}
|
||||||
style={{ color: "#4F566B" }}
|
style={{ color: "#4F566B" }}
|
||||||
>
|
>
|
||||||
{record?.status === true ? " ACTIVE" : "INACTIVE"}
|
{record?.status === true ? " ACTIVE" : "INACTIVE"}
|
||||||
</Tag>
|
</Tag>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -117,16 +116,16 @@ export const SupplierComponent = observer((props) => {
|
||||||
key: "action",
|
key: "action",
|
||||||
width: "20%",
|
width: "20%",
|
||||||
render: (text, record) => (
|
render: (text, record) => (
|
||||||
<Space size="middle">
|
<Space size="middle">
|
||||||
<Button
|
<Button
|
||||||
type={record?.status === true ? "danger" : "primary"}
|
type={record?.status === true ? "danger" : "primary"}
|
||||||
onClick={() => changeStatus(record?.id, record?.status)}
|
onClick={() => changeStatus(record?.id, record?.status)}
|
||||||
>
|
>
|
||||||
{record?.status === true ? "INACTIVE" : "ACTIVE"}
|
{record?.status === true ? "INACTIVE" : "ACTIVE"}
|
||||||
</Button>
|
</Button>
|
||||||
<Button onClick={() => handleTopup(record)}> Top Up Saldo</Button>
|
<Button onClick={() => handleTopup(record)}> Top Up Saldo</Button>
|
||||||
<Button onClick={() => handleEditButton(record)}>Edit</Button>
|
<Button onClick={() => handleEditButton(record)}>Edit</Button>
|
||||||
</Space>
|
</Space>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
@ -164,27 +163,7 @@ export const SupplierComponent = observer((props) => {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleCancelTransaction = () => {
|
|
||||||
store.supplier.visibleModalTransaction = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleSubmitTransaction = async (data) => {
|
|
||||||
try {
|
|
||||||
modalLoader.setLoading(true);
|
|
||||||
const response = await store.supplier.createTransaction(data);
|
|
||||||
message.success(response?.body?.message || "Success Top Up");
|
|
||||||
} catch (e) {
|
|
||||||
console.log(e, "apa errornya");
|
|
||||||
message.error(e.response?.body?.message || "Failed Top Up");
|
|
||||||
}
|
|
||||||
|
|
||||||
modalLoader.setLoading(false);
|
|
||||||
store.supplier.visibleModalTransaction = false;
|
|
||||||
form.resetFields();
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleCancel = () => {
|
const handleCancel = () => {
|
||||||
form.resetFields();
|
|
||||||
setIdData("");
|
setIdData("");
|
||||||
store.supplier.visibleModalSupplier = false;
|
store.supplier.visibleModalSupplier = false;
|
||||||
};
|
};
|
||||||
|
@ -196,12 +175,12 @@ export const SupplierComponent = observer((props) => {
|
||||||
modalLoader.setLoading(true);
|
modalLoader.setLoading(true);
|
||||||
const response = await store.supplier.update(idData, data);
|
const response = await store.supplier.update(idData, data);
|
||||||
response?.body?.statusCode === 201 || response?.body?.statusCode === 200
|
response?.body?.statusCode === 201 || response?.body?.statusCode === 200
|
||||||
? message.success(
|
? message.success(
|
||||||
response?.body?.message || "Berhasil Ubah Data Supplier"
|
response?.body?.message || "Berhasil Ubah Data Supplier"
|
||||||
)
|
)
|
||||||
: message.error(
|
: message.error(
|
||||||
response?.body?.message || "Gagal Ubah Data Supplier"
|
response?.body?.message || "Gagal Ubah Data Supplier"
|
||||||
);
|
);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
modalLoader.setLoading(false);
|
modalLoader.setLoading(false);
|
||||||
message.error(e.response?.body?.message || "Gagal Ubah Data Supplier");
|
message.error(e.response?.body?.message || "Gagal Ubah Data Supplier");
|
||||||
|
@ -216,7 +195,7 @@ export const SupplierComponent = observer((props) => {
|
||||||
const response = await store.supplier.create(data);
|
const response = await store.supplier.create(data);
|
||||||
if (response.status === 201) {
|
if (response.status === 201) {
|
||||||
message.success(
|
message.success(
|
||||||
response?.body?.message || "Berhasil Tambah Supplier"
|
response?.body?.message || "Berhasil Tambah Supplier"
|
||||||
);
|
);
|
||||||
await store.supplier.getData();
|
await store.supplier.getData();
|
||||||
} else {
|
} else {
|
||||||
|
@ -228,9 +207,9 @@ export const SupplierComponent = observer((props) => {
|
||||||
console.log(e.result, "testingan1");
|
console.log(e.result, "testingan1");
|
||||||
if (e.response?.body?.error) {
|
if (e.response?.body?.error) {
|
||||||
message.error(
|
message.error(
|
||||||
e.response.body.error
|
e.response.body.error
|
||||||
? "Supplier Tersebut Sudah Terdaftar"
|
? "Supplier Tersebut Sudah Terdaftar"
|
||||||
: e.response.body.error
|
: e.response.body.error
|
||||||
);
|
);
|
||||||
modalLoader.setLoading(false);
|
modalLoader.setLoading(false);
|
||||||
store.supplier.visibleModalSupplier = false;
|
store.supplier.visibleModalSupplier = false;
|
||||||
|
@ -249,245 +228,199 @@ export const SupplierComponent = observer((props) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{store.ui.mediaQuery.isDesktop && (
|
{store.ui.mediaQuery.isDesktop && (
|
||||||
<Table
|
<Table
|
||||||
style={{ textAlign: "center" }}
|
style={{ textAlign: "center" }}
|
||||||
columns={columns}
|
columns={columns}
|
||||||
dataSource={store.supplier.data}
|
dataSource={store.supplier.data}
|
||||||
bordered
|
bordered
|
||||||
pagination={{
|
pagination={{
|
||||||
pageSize: store.supplier.pageSize,
|
pageSize: store.supplier.pageSize,
|
||||||
total: store.supplier.total_data,
|
total: store.supplier.total_data,
|
||||||
current: store.supplier.page + 1,
|
current: store.supplier.page + 1,
|
||||||
showSizeChanger: true,
|
showSizeChanger: true,
|
||||||
simple: false,
|
simple: false,
|
||||||
}}
|
}}
|
||||||
onChange={async (page) => {
|
onChange={async (page) => {
|
||||||
let pageNumber = page.current;
|
let pageNumber = page.current;
|
||||||
store.supplier.pageSize = page.pageSize;
|
store.supplier.pageSize = page.pageSize;
|
||||||
store.supplier.page = pageNumber - 1;
|
store.supplier.page = pageNumber - 1;
|
||||||
modalLoader.setLoading(true);
|
modalLoader.setLoading(true);
|
||||||
await store.supplier.getData();
|
await store.supplier.getData();
|
||||||
modalLoader.setLoading(false);
|
modalLoader.setLoading(false);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{store.ui.mediaQuery.isMobile && (
|
{store.ui.mediaQuery.isMobile && (
|
||||||
<List
|
<List
|
||||||
itemLayout="horizontal"
|
itemLayout="horizontal"
|
||||||
position={"top"}
|
position={"top"}
|
||||||
pagination={{
|
pagination={{
|
||||||
onChange: async (page, pageSize) => {
|
onChange: async (page, pageSize) => {
|
||||||
store.supplier.pageSize = pageSize;
|
store.supplier.pageSize = pageSize;
|
||||||
store.supplier.page = page - 1;
|
store.supplier.page = page - 1;
|
||||||
modalLoader.setLoading(true);
|
modalLoader.setLoading(true);
|
||||||
await store.supplier.getData();
|
await store.supplier.getData();
|
||||||
modalLoader.setLoading(false);
|
modalLoader.setLoading(false);
|
||||||
},
|
},
|
||||||
pageSize: store.supplier.pageSize,
|
pageSize: store.supplier.pageSize,
|
||||||
total: store.supplier.total_data,
|
total: store.supplier.total_data,
|
||||||
current: store.supplier.page + 1,
|
current: store.supplier.page + 1,
|
||||||
style: { marginBottom: "1rem", marginRight: "1rem" },
|
style: { marginBottom: "1rem", marginRight: "1rem" },
|
||||||
}}
|
}}
|
||||||
dataSource={store.supplier.data}
|
dataSource={store.supplier.data}
|
||||||
style={{ padding: 0 }}
|
style={{ padding: 0 }}
|
||||||
renderItem={(item) => {
|
renderItem={(item) => {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<List.Item
|
<List.Item
|
||||||
key={item.id}
|
key={item.id}
|
||||||
style={{
|
|
||||||
backgroundColor: "#ffffff",
|
|
||||||
paddingTop: 0,
|
|
||||||
paddingBottom: 0,
|
|
||||||
display: "flex",
|
|
||||||
flexDirection: "row",
|
|
||||||
alignItems: "center",
|
|
||||||
justifyContent: "center",
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<List.Item.Meta
|
|
||||||
className={[""].join(" ")}
|
|
||||||
title={item.code}
|
|
||||||
description={
|
|
||||||
<div style={{}}>
|
|
||||||
<p>
|
|
||||||
<small>Name : {item.name}</small> <br />
|
|
||||||
<small>Saldo Supplier : {item.coa.amount}</small>
|
|
||||||
<br />
|
|
||||||
<small>
|
|
||||||
Saldo System : {item.coa_undistribute.amount}
|
|
||||||
</small>
|
|
||||||
<br />
|
|
||||||
<Button
|
|
||||||
style={{
|
style={{
|
||||||
marginRight: 10,
|
backgroundColor: "#ffffff",
|
||||||
|
paddingTop: 0,
|
||||||
|
paddingBottom: 0,
|
||||||
|
display: "flex",
|
||||||
|
flexDirection: "row",
|
||||||
|
alignItems: "center",
|
||||||
|
justifyContent: "center",
|
||||||
}}
|
}}
|
||||||
type={item?.status === true ? "danger" : "primary"}
|
>
|
||||||
onClick={() => changeStatus(item?.id, item?.status)}
|
<List.Item.Meta
|
||||||
>
|
className={[""].join(" ")}
|
||||||
{item?.status === true ? "INACTIVE" : "ACTIVE"}
|
title={item.code}
|
||||||
</Button>
|
description={
|
||||||
<Button
|
<div style={{}}>
|
||||||
onClick={() => handleTopup(item)}
|
<p>
|
||||||
style={{
|
<small>Name : {item.name}</small> <br />
|
||||||
marginRight: 10,
|
<small>Saldo Supplier : {item.coa.amount}</small>
|
||||||
}}
|
<br />
|
||||||
>
|
<small>
|
||||||
Top Up Saldo
|
Saldo System : {item.coa_undistribute.amount}
|
||||||
</Button>
|
</small>
|
||||||
<Button
|
<br />
|
||||||
onClick={() => handleEditButton(item)}
|
<Button
|
||||||
style={{
|
style={{
|
||||||
marginBottom: 5,
|
marginRight: 10,
|
||||||
}}
|
}}
|
||||||
>
|
type={item?.status === true ? "danger" : "primary"}
|
||||||
Edit
|
onClick={() => changeStatus(item?.id, item?.status)}
|
||||||
</Button>
|
>
|
||||||
<Tag
|
{item?.status === true ? "INACTIVE" : "ACTIVE"}
|
||||||
color={
|
</Button>
|
||||||
item?.status === true ? "processing" : "#E3E8EE"
|
<Button
|
||||||
}
|
onClick={() => handleTopup(item)}
|
||||||
style={{ color: "#4F566B" }}
|
style={{
|
||||||
>
|
marginRight: 10,
|
||||||
{item?.status === true ? " ACTIVE" : "INACTIVE"}
|
}}
|
||||||
</Tag>
|
>
|
||||||
</p>
|
Top Up Saldo
|
||||||
<p></p>
|
</Button>
|
||||||
|
<Button
|
||||||
|
onClick={() => handleEditButton(item)}
|
||||||
|
style={{
|
||||||
|
marginBottom: 5,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Edit
|
||||||
|
</Button>
|
||||||
|
<Tag
|
||||||
|
color={
|
||||||
|
item?.status === true ? "processing" : "#E3E8EE"
|
||||||
|
}
|
||||||
|
style={{ color: "#4F566B" }}
|
||||||
|
>
|
||||||
|
{item?.status === true ? " ACTIVE" : "INACTIVE"}
|
||||||
|
</Tag>
|
||||||
|
</p>
|
||||||
|
<p></p>
|
||||||
|
</div>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</List.Item>
|
||||||
|
<Divider plain style={{ margin: 0 }} />
|
||||||
</div>
|
</div>
|
||||||
}
|
);
|
||||||
/>
|
}}
|
||||||
</List.Item>
|
/>
|
||||||
<Divider plain style={{ margin: 0 }} />
|
)}
|
||||||
</div>
|
<Modal
|
||||||
);
|
visible={store.supplier.visibleModalSupplier}
|
||||||
}}
|
title={idData ? "Edit Supplier" : "Buat Supplier Baru"}
|
||||||
/>
|
okText={idData ? "Edit" : "Buat"}
|
||||||
)}
|
cancelText="Batal"
|
||||||
<Modal
|
onCancel={() => {
|
||||||
visible={store.supplier.visibleModalSupplier}
|
|
||||||
title={idData ? "Edit Supplier" : "Buat Supplier Baru"}
|
|
||||||
okText={idData ? "Edit" : "Buat"}
|
|
||||||
cancelText="Batal"
|
|
||||||
onCancel={() => {
|
|
||||||
handleCancel();
|
|
||||||
}}
|
|
||||||
onOk={() => {
|
|
||||||
form
|
|
||||||
.validateFields()
|
|
||||||
.then((values) => {
|
|
||||||
console.log(values, "isi form");
|
|
||||||
handleSubmit(values);
|
|
||||||
form.resetFields();
|
form.resetFields();
|
||||||
})
|
handleCancel();
|
||||||
.catch((info) => {
|
}}
|
||||||
console.error("Validate Failed:", info);
|
onOk={() => {
|
||||||
});
|
form
|
||||||
}}
|
.validateFields()
|
||||||
>
|
.then((values) => {
|
||||||
<Form form={form} layout="vertical">
|
console.log(values, "isi form");
|
||||||
<Form.Item
|
handleSubmit(values);
|
||||||
name="irs_id"
|
form.resetFields();
|
||||||
label="Id"
|
})
|
||||||
rules={[{ required: true, message: "Please input name!" }]}
|
.catch((info) => {
|
||||||
>
|
console.error("Validate Failed:", info);
|
||||||
<Input />
|
});
|
||||||
</Form.Item>
|
}}
|
||||||
<Form.Item
|
>
|
||||||
name="name"
|
<Form form={form} layout="vertical">
|
||||||
label="Name"
|
|
||||||
rules={[{ required: true, message: "Please input url!" }]}
|
|
||||||
>
|
|
||||||
<Input />
|
|
||||||
</Form.Item>
|
|
||||||
<Form.Item
|
|
||||||
name="url"
|
|
||||||
label="Url"
|
|
||||||
rules={[{ required: true, message: "Please input url!" }]}
|
|
||||||
>
|
|
||||||
<Input />
|
|
||||||
</Form.Item>
|
|
||||||
<Form.Item
|
|
||||||
name="irs_pin"
|
|
||||||
label="Pin"
|
|
||||||
rules={[{ required: true, message: "Please input url!" }]}
|
|
||||||
>
|
|
||||||
<Input />
|
|
||||||
</Form.Item>
|
|
||||||
<Form.Item
|
|
||||||
name="irs_user"
|
|
||||||
label="User"
|
|
||||||
rules={[{ required: true, message: "Please input url!" }]}
|
|
||||||
>
|
|
||||||
<Input />
|
|
||||||
</Form.Item>
|
|
||||||
<Form.Item
|
|
||||||
name="irs_pass"
|
|
||||||
label="Password"
|
|
||||||
rules={[{ required: true, message: "Please input url!" }]}
|
|
||||||
>
|
|
||||||
<Input />
|
|
||||||
</Form.Item>
|
|
||||||
{!idData && (
|
|
||||||
<Form.Item
|
<Form.Item
|
||||||
name="code"
|
name="irs_id"
|
||||||
label="Kode"
|
label="Id"
|
||||||
rules={[{ required: true, message: "Please input kode!" }]}
|
rules={[{ required: true, message: "Please input name!" }]}
|
||||||
>
|
>
|
||||||
<Input />
|
<Input />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
)}
|
<Form.Item
|
||||||
</Form>
|
name="name"
|
||||||
</Modal>
|
label="Name"
|
||||||
<Modal
|
rules={[{ required: true, message: "Please input url!" }]}
|
||||||
visible={store.supplier.visibleModalTransaction}
|
>
|
||||||
title="Top Up Saldo"
|
<Input />
|
||||||
okText="Top Up"
|
</Form.Item>
|
||||||
cancelText="Batal"
|
<Form.Item
|
||||||
onCancel={() => {
|
name="url"
|
||||||
form.resetFields();
|
label="Url"
|
||||||
handleCancelTransaction();
|
rules={[{ required: true, message: "Please input url!" }]}
|
||||||
}}
|
>
|
||||||
onOk={() => {
|
<Input />
|
||||||
form
|
</Form.Item>
|
||||||
.validateFields()
|
<Form.Item
|
||||||
.then((values) => {
|
name="irs_pin"
|
||||||
console.log(values, "isi form");
|
label="Pin"
|
||||||
handleSubmitTransaction(values);
|
rules={[{ required: true, message: "Please input url!" }]}
|
||||||
form.resetFields();
|
>
|
||||||
})
|
<Input />
|
||||||
.catch((info) => {
|
</Form.Item>
|
||||||
console.error("Validate Failed:", info);
|
<Form.Item
|
||||||
});
|
name="irs_user"
|
||||||
}}
|
label="User"
|
||||||
>
|
rules={[{ required: true, message: "Please input url!" }]}
|
||||||
<Form
|
>
|
||||||
form={form}
|
<Input />
|
||||||
layout="vertical"
|
</Form.Item>
|
||||||
>
|
<Form.Item
|
||||||
<Form.Item
|
name="irs_pass"
|
||||||
name="code"
|
label="Password"
|
||||||
label="Supplier"
|
rules={[{ required: true, message: "Please input url!" }]}
|
||||||
rules={[{ required: true, message: "Please input supplier!" }]}
|
>
|
||||||
>
|
<Input />
|
||||||
<Input disabled={true} />
|
</Form.Item>
|
||||||
</Form.Item>
|
{!idData && (
|
||||||
<Form.Item
|
<Form.Item
|
||||||
name="amount"
|
name="code"
|
||||||
label="Nominal"
|
label="Kode"
|
||||||
rules={[{ required: true, message: "Please input amount!" }]}
|
rules={[{ required: true, message: "Please input kode!" }]}
|
||||||
>
|
>
|
||||||
<InputNumber
|
<Input />
|
||||||
style={{ width: "100%" }}
|
</Form.Item>
|
||||||
formatter={(value) =>
|
)}
|
||||||
`Rp. ${value}`.replace(/\B(?=(\d{3})+(?!\d))/g, ",")
|
</Form>
|
||||||
}
|
</Modal>
|
||||||
parser={(value) => value.replace(/\Rp.\s?|(,*)/g, "")}
|
<TopupsaldoModal code={store.supplier.code} />
|
||||||
/>
|
</div>
|
||||||
</Form.Item>
|
|
||||||
</Form>
|
|
||||||
</Modal>
|
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user