dev #872

Merged
ysCha merged 111 commits from dev into dev-deploy 2026-05-29 16:09:40 +09:00
Showing only changes of commit 1fa6340d88 - Show all commits

View File

@ -1360,11 +1360,10 @@ export default function Estimate({}) {
<col />
</colgroup>
<tbody>
{session?.storeLvl !== '2' && (
<tr>
{/* 1차 판매점명 */}
<th>{getMessage('estimate.detail.saleStoreId')}</th>
<td>{estimateContextState?.firstSaleStoreName}</td>
{/* 견적일 */}
<th>
{getMessage('estimate.detail.estimateDate')} <span className="important">*</span>
</th>
@ -1374,6 +1373,19 @@ export default function Estimate({}) {
</div>
</td>
</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>
{/* 2차 판매점명 */}
<th>{getMessage('estimate.detail.otherSaleStoreId')}</th>