Merge pull request '2차점 이상이 들어온 경우 물건번호에서 1차판매점 영역 비활성화 재처리' (#675) from feature/qcast-1512 into dev

Reviewed-on: #675
This commit is contained in:
RyuJeYoung 2026-03-03 18:57:11 +09:00
commit 884d674046

View File

@ -1748,7 +1748,7 @@ export default function StuffDetail() {
<button type="button" className="btn-origin grey mr5" onClick={onTempSave} style={{ display: showButton }}> <button type="button" className="btn-origin grey mr5" onClick={onTempSave} style={{ display: showButton }}>
{getMessage('stuff.detail.btn.tempSave')} {getMessage('stuff.detail.btn.tempSave')}
</button> </button>
<button type="button" onClick={() => onValid('save')} className="btn-origin navy mr5" style={{ display: showButton }}> <button type="button" onClick={() => onValid('save')} className="btn-origin navy mr5" style={{ display: showButton }}>
{getMessage('stuff.detail.btn.save')} {getMessage('stuff.detail.btn.save')}
</button> </button>
<button <button
@ -2163,7 +2163,7 @@ export default function StuffDetail() {
onChange={(value) => form.setValue('verticalSnowCover', value)} onChange={(value) => form.setValue('verticalSnowCover', value)}
options={{ options={{
allowNegative: false, allowNegative: false,
allowDecimal: false allowDecimal: false,
}} }}
/> />
</div> </div>
@ -2235,7 +2235,7 @@ export default function StuffDetail() {
onChange={(value) => form.setValue('installHeight', value)} onChange={(value) => form.setValue('installHeight', value)}
options={{ options={{
allowNegative: false, allowNegative: false,
allowDecimal: false allowDecimal: false,
}} }}
/> />
</div> </div>
@ -2448,7 +2448,7 @@ export default function StuffDetail() {
</div> </div>
</td> </td>
</tr> </tr>
<tr> <tr style={{ display: session?.storeLvl === '1' ? '' : 'none' }}>
<th> <th>
<div className="flx-box"> <div className="flx-box">
<div className="title"> <div className="title">
@ -2759,7 +2759,7 @@ export default function StuffDetail() {
onChange={(value) => form.setValue('verticalSnowCover', value)} onChange={(value) => form.setValue('verticalSnowCover', value)}
options={{ options={{
allowNegative: false, allowNegative: false,
allowDecimal: false allowDecimal: false,
}} }}
/> />
</div> </div>
@ -2835,7 +2835,7 @@ export default function StuffDetail() {
onChange={(value) => form.setValue('installHeight', value)} onChange={(value) => form.setValue('installHeight', value)}
options={{ options={{
allowNegative: false, allowNegative: false,
allowDecimal: false allowDecimal: false,
}} }}
/> />
</div> </div>
@ -2966,7 +2966,7 @@ export default function StuffDetail() {
<WindSelectPop setShowWindSpeedButtonValid={setShowWindSpeedButtonValid} prefName={form.watch('prefName')} windSpeedInfo={setWindSppedInfo} /> <WindSelectPop setShowWindSpeedButtonValid={setShowWindSpeedButtonValid} prefName={form.watch('prefName')} windSpeedInfo={setWindSppedInfo} />
)} )}
{estimatePopupOpen && <DocDownOptionPop planNo={popPlanNo} setEstimatePopupOpen={setEstimatePopupOpen} createStoreId={createSaleStoreId}/>} {estimatePopupOpen && <DocDownOptionPop planNo={popPlanNo} setEstimatePopupOpen={setEstimatePopupOpen} createStoreId={createSaleStoreId} />}
</> </>
) )
} }