| @@ -427,21 +427,28 @@ const FormPanel = ({ formData }) => { | |||
| <table style={tabelStyle}> | |||
| <tbody> | |||
| <tr style={tabelStyle}> | |||
| <th style={tabelStyle} width="50" align="left"></th> | |||
| {!isOnlyOnlinePayment? | |||
| <th style={tabelStyle} width="50" align="left"></th> | |||
| : | |||
| null | |||
| } | |||
| <th style={tabelStyle} width="300" align="left"><FormattedMessage id="paymentMeans" /></th> | |||
| <th style={tabelStyle} width="300" align="left"><FormattedMessage id="commentDeadline" /></th> | |||
| <th style={tabelStyle} width="300" align="left"><FormattedMessage id="confirmingDealine" /></th> | |||
| <th style={tabelStyle} width="400" align="left"><FormattedMessage id="PaymentCoonpletDealine" /></th> | |||
| </tr> | |||
| <tr> | |||
| <td style={tabelStyle}> | |||
| <Checkbox | |||
| checked={paymentMethod == "online"} | |||
| onChange={() => { | |||
| set_paymentMethod("online") | |||
| }} | |||
| /> | |||
| </td> | |||
| {!isOnlyOnlinePayment? | |||
| <td style={tabelStyle}> | |||
| <Checkbox | |||
| checked={paymentMethod == "online"} | |||
| onChange={() => { | |||
| set_paymentMethod("online") | |||
| }} | |||
| /> | |||
| </td> | |||
| :null | |||
| } | |||
| <td style={tabelStyle}> | |||
| <FormattedMessage id="payOnline" /> | |||
| {checkPaymentSuspention()? | |||
| @@ -579,12 +586,13 @@ const FormPanel = ({ formData }) => { | |||
| <div style={{ padding: 12 }} dangerouslySetInnerHTML={{ __html: intl.formatMessage({ id: "proofNote" }) }} /> | |||
| </Typography> | |||
| </Grid> */} | |||
| <Grid item xs={12}> | |||
| <Typography variant="h6" height="100%" > | |||
| <div style={{ padding: 12 }} dangerouslySetInnerHTML={{ __html: intl.formatMessage({ id: "proofImportant" }) }} /> | |||
| </Typography> | |||
| </Grid> | |||
| {!isOnlyOnlinePayment? | |||
| <Grid item xs={12}> | |||
| <Typography variant="h6" height="100%" > | |||
| <div style={{ padding: 12 }} dangerouslySetInnerHTML={{ __html: intl.formatMessage({ id: "proofImportant" }) }} /> | |||
| </Typography> | |||
| </Grid>:null | |||
| } | |||
| </> | |||
| : | |||
| actionValue ? | |||