|
@@ -231,16 +231,16 @@ const ApplicationDetailCard = ({ formData, }) => { |
|
|
<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" display="inline"> |
|
|
<Typography variant="h5" display="inline"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormattedMessage id="commentDeadline" />: |
|
|
<FormattedMessage id="commentDeadline" />: |
|
|
</Typography> |
|
|
</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">  |
|
|
<Typography variant="h5">  |
|
|
{locale === 'en' ? |
|
|
{locale === 'en' ? |
|
|
`${intl.formatMessage({ id: 'before' })} ${DateUtils.datetimeStr(data?.reviseDeadline)} ` |
|
|
|
|
|
|
|
|
`${intl.formatMessage({ id: 'before' })} ${DateUtils.dateFormat(data?.reviseDeadline, intl.formatMessage({ id: "paymentMethodDatetimeStrFormat" }))?.replace("am", "a.m.")?.replace("pm", "p.m.")} ` |
|
|
: |
|
|
: |
|
|
`${DateUtils.datetimeStr_Cht(data?.reviseDeadline)} ${intl.formatMessage({ id: 'before' })}` |
|
|
|
|
|
|
|
|
`${DateUtils.dateFormat(data?.reviseDeadline, intl.formatMessage({ id: "paymentMethodDatetimeStrFormat" }))?.replace("am", "a.m.")?.replace("pm", "p.m.")} ${intl.formatMessage({ id: 'before' })}` |
|
|
} |
|
|
} |
|
|
</Typography> |
|
|
</Typography> |
|
|
</Grid> |
|
|
</Grid> |
|
@@ -254,9 +254,9 @@ const ApplicationDetailCard = ({ formData, }) => { |
|
|
<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">  |
|
|
<Typography variant="h5">  |
|
|
{locale === 'en' ? |
|
|
{locale === 'en' ? |
|
|
`${intl.formatMessage({ id: 'before' })} ${DateUtils.datetimeStr(data?.proofPaymentDeadline)} ` |
|
|
|
|
|
|
|
|
`${intl.formatMessage({ id: 'before' })} ${DateUtils.dateFormat(data?.proofPaymentDeadline, intl.formatMessage({ id: "paymentMethodDatetimeStrFormat" }))?.replace("am", "a.m.")?.replace("pm", "p.m.")} ` |
|
|
: |
|
|
: |
|
|
`${DateUtils.datetimeStr_Cht(data?.proofPaymentDeadline)} ${intl.formatMessage({ id: 'before' })}` |
|
|
|
|
|
|
|
|
`${DateUtils.dateFormat(data?.proofPaymentDeadline, intl.formatMessage({ id: "paymentMethodDatetimeStrFormat" }))?.replace("am", "a.m.")?.replace("pm", "p.m.")} ${intl.formatMessage({ id: 'before' })}` |
|
|
} |
|
|
} |
|
|
</Typography> |
|
|
</Typography> |
|
|
</Grid> |
|
|
</Grid> |
|
|