@@ -220,9 +220,9 @@ export default function SearchDemandNote({ recordList, reloadFun, applySearch }) | |||||
{ | { | ||||
field: 'dnNo', | field: 'dnNo', | ||||
headerName: 'DN No.', | headerName: 'DN No.', | ||||
width: 200, | |||||
width: 220, | |||||
renderCell: (params) => { | renderCell: (params) => { | ||||
return <Button onClick={handleDnClick(params)}><u>{params.row.dnNo}</u></Button>; | |||||
return <Button sx={{fontSize: '8px'}} onClick={handleDnClick(params)}><u>{params.row.dnNo}</u></Button>; | |||||
}, | }, | ||||
}, | }, | ||||
{ | { | ||||
@@ -123,7 +123,7 @@ const OrganizationSearchForm = ({ applySearch }) => { | |||||
renderInput={(params) => ( | renderInput={(params) => ( | ||||
<TextField | <TextField | ||||
{...params} | {...params} | ||||
label="Status" | |||||
label="Creditor/Non-creditor" | |||||
InputLabelProps={{ | InputLabelProps={{ | ||||
shrink: true | shrink: true | ||||
}} | }} | ||||
@@ -197,7 +197,7 @@ const FormPanel = ({ formData }) => { | |||||
<Grid item xs={12} md={12}> | <Grid item xs={12} md={12}> | ||||
<Stack direction="row" sx={{ display: 'flex', alignItems: 'center' }}> | <Stack direction="row" sx={{ display: 'flex', alignItems: 'center' }}> | ||||
<FormLabel sx={{ paddingRight: 2, textAlign: "center" }}> | <FormLabel sx={{ paddingRight: 2, textAlign: "center" }}> | ||||
<Typography variant="h5">Return Revise Before:</Typography> | |||||
<Typography variant="h5">Deadline for proof with revison:</Typography> | |||||
</FormLabel> | </FormLabel> | ||||
<TextField | <TextField | ||||
fullWidth | fullWidth | ||||
@@ -223,7 +223,7 @@ const FormPanel = ({ formData }) => { | |||||
<Grid item xs={12} md={12}> | <Grid item xs={12} md={12}> | ||||
<Stack direction="row" sx={{ display: 'flex', alignItems: 'center' }}> | <Stack direction="row" sx={{ display: 'flex', alignItems: 'center' }}> | ||||
<FormLabel sx={{ paddingRight: 2, textAlign: "center" }}> | <FormLabel sx={{ paddingRight: 2, textAlign: "center" }}> | ||||
<Typography variant="h5">Payment Before Date:</Typography> | |||||
<Typography variant="h5">Deadline for confirm proof and payment:</Typography> | |||||
</FormLabel> | </FormLabel> | ||||
<TextField | <TextField | ||||
fullWidth | fullWidth | ||||
@@ -266,14 +266,14 @@ const ApplicationDetailCard = ({ | |||||
<Grid container alignItems={"center"}> | <Grid container alignItems={"center"}> | ||||
<Grid item xs={12} md={12} lg={12} | <Grid item xs={12} md={12} lg={12} | ||||
sx={{ display: 'flex', alignItems: 'center' }}> | sx={{ display: 'flex', alignItems: 'center' }}> | ||||
<Typography variant="h5">Deadline for payment:</Typography> | |||||
<Typography variant="h5">Deadline for confirm proof and payment</Typography> | |||||
</Grid> | </Grid> | ||||
<Grid item xs={12} md={12} lg={12} sx={{ mb: 4, display: 'flex', alignItems: 'center' }}> | <Grid item xs={12} md={12} lg={12} sx={{ mb: 4, display: 'flex', alignItems: 'center' }}> | ||||
<Typography variant="h5">Before {DateUtils.datetimeStr(data.proofPaymentDeadline)}</Typography> | <Typography variant="h5">Before {DateUtils.datetimeStr(data.proofPaymentDeadline)}</Typography> | ||||
</Grid> | </Grid> | ||||
<Grid item xs={12} md={12} lg={12} | <Grid item xs={12} md={12} lg={12} | ||||
sx={{ display: 'flex', alignItems: 'center' }}> | sx={{ display: 'flex', alignItems: 'center' }}> | ||||
<Typography variant="h5">Deadline for revise:</Typography> | |||||
<Typography variant="h5">Deadline for proof with revison:</Typography> | |||||
</Grid> | </Grid> | ||||
<Grid item xs={12} md={12} lg={12} sx={{ mb: 4, display: 'flex', alignItems: 'center' }}> | <Grid item xs={12} md={12} lg={12} sx={{ mb: 4, display: 'flex', alignItems: 'center' }}> | ||||
<Typography variant="h5">Before {DateUtils.datetimeStr(data.reviseDeadline)}</Typography> | <Typography variant="h5">Before {DateUtils.datetimeStr(data.reviseDeadline)}</Typography> | ||||
@@ -119,7 +119,7 @@ | |||||
"resetPasswordSuccess": "Password reset successfully.", | "resetPasswordSuccess": "Password reset successfully.", | ||||
"securityCode": "Security Code", | "securityCode": "Security Code", | ||||
"sentSecurityCode1": "We sent your code to your setting email", | |||||
"sentSecurityCode1": "We have sent an email with the verification link to your email.", | |||||
"sentSecurityCode2": "Please check your emails for a message with your code.", | "sentSecurityCode2": "Please check your emails for a message with your code.", | ||||
"sentSecurityCode3": "Please check your emails for ", | "sentSecurityCode3": "Please check your emails for ", | ||||
"sentSecurityCode4": "a message with your code.", | "sentSecurityCode4": "a message with your code.", | ||||