Merge pull request '[견적서] 1차 판매점명 행 노출 조건 보정 — storeLvl === '1' 일 때만 표시' (#824) from dev into dev-deploy
Reviewed-on: #824
This commit is contained in:
commit
6acbcc5886
@ -1363,7 +1363,8 @@ export default function Estimate({}) {
|
|||||||
<col />
|
<col />
|
||||||
</colgroup>
|
</colgroup>
|
||||||
<tbody>
|
<tbody>
|
||||||
{session?.storeLvl !== '2' && (
|
{/* [estimate-1차점 노출조건 2026-05-07] storeLvl === '1' 일 때만 1차 판매점명 행 노출 */}
|
||||||
|
{session?.storeLvl === '1' && (
|
||||||
<tr>
|
<tr>
|
||||||
<th>{getMessage('estimate.detail.saleStoreId')}</th>
|
<th>{getMessage('estimate.detail.saleStoreId')}</th>
|
||||||
<td>{estimateContextState?.firstSaleStoreName}</td>
|
<td>{estimateContextState?.firstSaleStoreName}</td>
|
||||||
@ -1377,7 +1378,8 @@ export default function Estimate({}) {
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
)}
|
)}
|
||||||
{session?.storeLvl === '2' && (
|
{/* [estimate-1차점-노출조건 2026-05-07] 1차점이 아닌 사용자(2차/그 외)는 1차 판매점명 숨기고 견적일자만 colSpan=3 */}
|
||||||
|
{session?.storeLvl !== '1' && (
|
||||||
<tr>
|
<tr>
|
||||||
<th >
|
<th >
|
||||||
{getMessage('estimate.detail.estimateDate')} <span className="important">*</span>
|
{getMessage('estimate.detail.estimateDate')} <span className="important">*</span>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user