This commit is contained in:
hyojun.choi 2026-03-18 16:17:23 +09:00
commit f29d3aa147

View File

@ -1360,11 +1360,10 @@ export default function Estimate({}) {
<col /> <col />
</colgroup> </colgroup>
<tbody> <tbody>
{session?.storeLvl !== '2' && (
<tr> <tr>
{/* 1차 판매점명 */}
<th>{getMessage('estimate.detail.saleStoreId')}</th> <th>{getMessage('estimate.detail.saleStoreId')}</th>
<td>{estimateContextState?.firstSaleStoreName}</td> <td>{estimateContextState?.firstSaleStoreName}</td>
{/* 견적일 */}
<th> <th>
{getMessage('estimate.detail.estimateDate')} <span className="important">*</span> {getMessage('estimate.detail.estimateDate')} <span className="important">*</span>
</th> </th>
@ -1374,6 +1373,19 @@ export default function Estimate({}) {
</div> </div>
</td> </td>
</tr> </tr>
)}
{session?.storeLvl === '2' && (
<tr>
<th >
{getMessage('estimate.detail.estimateDate')} <span className="important">*</span>
</th>
<td colSpan={3}>
<div className="date-picker" style={{ width: '350px' }}>
<SingleDatePicker {...singleDatePickerProps} />
</div>
</td>
</tr>
)}
<tr> <tr>
{/* 2차 판매점명 */} {/* 2차 판매점명 */}
<th>{getMessage('estimate.detail.otherSaleStoreId')}</th> <th>{getMessage('estimate.detail.otherSaleStoreId')}</th>