Untitled
code quyet toan formunknown
plain_text
a year ago
11 kB
10
Indexable
<Row gutter={16}>
<Col md={8}>
<Form.Item
{...customFormItem(
"ngay_khoi_cong",
"Ngày khởi công :",
// "Vui lòng nhập ngày khởi công",
)}
>
<DatePicker
style={{ width: "100%" }}
format={"DD/MM/YYYY"}
placeholder={"Vui lòng chọn ngày "}
/>
</Form.Item>
<Form.Item
{...customFormItem(
"ngay_nop_hs",
"Ngày nộp hồ sơ cho quyết định Sở Tài chính :",
// "Vui lòng nhập ngày nộp hồ sơ cho quyết định Sở Tài chính",
)}
>
<DatePicker
style={{ width: "100%" }}
format={"DD/MM/YYYY"}
placeholder={"Vui lòng chọn ngày "}
/>
</Form.Item>
{/* <Form.Item
{...customFormItem(
"ngay_gui_bao_cao_giam_sat",
"Ngày gửi báo cáo giám sát cho SKHĐT :",
// "Vui lòng nhập ngày gửi báo cáo giám sát cho SKHĐT",
)}
>
<DatePicker
style={{ width: "100%" }}
format={"DD/MM/YYYY"}
placeholder={"Vui lòng chọn ngày "}
/>
</Form.Item> */}
<Form.Item
{...customFormItem(
"so_qd_thanh_tra_kiem_tra",
"Số QĐ thanh tra, kiểm tra (nếu có) :",
// "Vui lòng nhập số QĐ thanh tra, kiểm tra",
)}
>
<Input style={{ width: "100%" }} />
</Form.Item>
<Form.Item
{...customFormItem(
"don_vi_nhan_ban_giao",
"Đơn vị nhận bàn giao đưa vào sử dụng :",
// "Vui lòng nhập đơn vị nhận bàn giao đưa vào sử dụng",
)}
>
<Input style={{ width: "100%" }} />
</Form.Item>
<Form.Item
{...customFormItem(
"ket_luan_thanh_tra",
"Kết luận thanh tra, kiểm tra (nếu có)",
// "Vui lòng nhập kết luận thanh tra, kiểm tra (nếu có)",
)}
>
<Input style={{ width: "100%" }} />
</Form.Item>
</Col>
{/* 2222 */}
<Col md={8}>
<Form.Item
{...customFormItem(
"ngay_hoan_thanh",
"Ngày hoàn thành :",
// "Vui lòng chọn ngày hoàn thành",
)}
>
<DatePicker
style={{ width: "100%" }}
format={"DD/MM/YYYY"}
placeholder={"Vui lòng chọn ngày"}
/>
</Form.Item>
<Form.Item
{...customFormItem(
"ngay_ky_bb_tham_tra",
"Ngày ký BB thẩm tra quyết toán :",
// "Vui lòng nhập ngày ký BB thẩm tra quyết toán",
)}
>
<DatePicker
style={{ width: "100%" }}
format={"DD/MM/YYYY"}
placeholder={"Vui lòng chọn ngày"}
/>
</Form.Item>
<Form.Item
{...customFormItem(
"ngay_ky_qd_phe_duyet",
"Ngày ký QĐ phê duyệt quyết toán dự án",
// "Vui lòng nhập ngày ký QĐ phê duyệt quyết toán dự án",
)}
>
<DatePicker
style={{ width: "100%" }}
format={"DD/MM/YYYY"}
placeholder={"Vui lòng chọn ngày"}
/>
</Form.Item>
<Form.Item
{...customFormItem(
"so_bien_ban_tham_tra",
"Số biên bản thẩm tra quyết toán :",
// "Vui lòng nhập số biên bản thẩm tra quyết toán",
)}
>
<Input style={{ width: "100%" }} />
</Form.Item>
<Form.Item
{...customFormItem(
"tinh_hinh_lap_luu_tru_ho_so",
"Tình hình lập và lưu trữ hồ sơ dự án :",
// "Vui lòng nhập tình hình lập và lưu trữ hồ sơ dự án",
)}
>
<Input style={{ width: "100%" }} />
</Form.Item>
</Col>
{/* 3333 */}
<Col md={8}>
<Form.Item
{...customFormItem(
"gia_tri_qd_phe_duyet",
"Giá trị QĐ phê duyệt quyết toán dự án :",
// "Vui lòng nhập giá trị QĐ phê duyệt quyết toán dự án",
)}
>
<InputCustom style={{ width: "100%" }} placeholder="000.000.000" />
</Form.Item>
<Form.Item
{...customFormItem(
"gia_tri_tham_tra",
"Giá trị thẩm tra quyết toán :",
// "Vui lòng nhập giá trị thẩm tra quyết toán",
)}
>
<InputCustom style={{ width: "100%" }} placeholder="000.000.000" />
</Form.Item>
<Form.Item {...customFormItem("cong_no", "Công nợ phải trả :")}>
<InputCustom placeholder="000.000.000" style={{ width: "100%" }} />
</Form.Item>
<Form.Item
{...customFormItem(
"so_bien_ban_nghiem_thu",
"Số biên bản nghiệm thu hoàn thành :",
// "Vui lòng nhập số biên bản nghiệm thu hoàn thành",
)}
>
<Input style={{ width: "100%" }} />
</Form.Item>
<Form.Item
{...customFormItem(
"so_qd_phe_duyet",
"Số QĐ phê duyệt quyết toán dự án :",
//"Vui lòng nhập số QĐ phê duyệt quyết toán dự án",
)}
>
<Input style={{ width: "100%" }} />
</Form.Item>
{/* <Form.Item {...customFormItem("hinh_thuc", "Hình thức",
// "Vui lòng chọn hình thức"
)}>
<Select
style={{ width: "100%" }}
allowClear
showSearch
options={[
{
value: 1,
label: "Công khai",
},
{
value: 0,
label: "Không công khai",
},
]}
disabled={loading}
filterOption={(input, option) => (option?.label ?? "").includes(input)}
filterSort={(optionA, optionB) =>
(optionA?.label ?? "")
.toLowerCase()
.localeCompare((optionB?.label ?? "").toLowerCase())
}
/>
</Form.Item> */}
</Col>
</Row>Editor is loading...
Leave a Comment