Compare commits
No commits in common. "8a1e0fa6384a755144dab38516d55fe943ad8233" and "4133f1b51216e081987ba19aeb4657e6d61ffd8b" have entirely different histories.
8a1e0fa638
...
4133f1b512
@ -649,18 +649,12 @@ export default function StepUp(props) {
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{pcsItem?.serQtyList?.map((item, serQtyIdx) => {
|
{pcsItem.serQtyList.map((item, serQtyIdx) => {
|
||||||
return (
|
return (
|
||||||
<tr
|
<tr
|
||||||
key={`row-${serQtyIdx}`}
|
key={`row-${serQtyIdx}`}
|
||||||
className={`${item.selected ? 'on' : ''}`}
|
className={`${item.selected ? 'on' : ''}`}
|
||||||
style={{ cursor: allocationType === 'auto' ? 'pointer' : 'default' }}
|
style={{ cursor: allocationType === 'auto' ? 'pointer' : 'default' }}
|
||||||
onClick={() => {
|
|
||||||
if (stepUp?.pcsItemList.length !== 1) {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
handleRowClick(idx, serQtyIdx, item.paralQty)
|
|
||||||
}}
|
|
||||||
>
|
>
|
||||||
<td
|
<td
|
||||||
className="al-r"
|
className="al-r"
|
||||||
@ -673,7 +667,6 @@ export default function StepUp(props) {
|
|||||||
<td className="al-r">
|
<td className="al-r">
|
||||||
{/* 2025.12.04 select 추가 */}
|
{/* 2025.12.04 select 추가 */}
|
||||||
{idx === 0 ? (
|
{idx === 0 ? (
|
||||||
stepUp?.pcsItemList.length !== 1 ? (
|
|
||||||
<select
|
<select
|
||||||
className="select-light dark table-select"
|
className="select-light dark table-select"
|
||||||
defaultValue={item.paralQty}
|
defaultValue={item.paralQty}
|
||||||
@ -703,9 +696,6 @@ export default function StepUp(props) {
|
|||||||
</select>
|
</select>
|
||||||
) : (
|
) : (
|
||||||
<>{item.paralQty}</>
|
<>{item.paralQty}</>
|
||||||
)
|
|
||||||
) : (
|
|
||||||
<>{item.paralQty}</>
|
|
||||||
)}
|
)}
|
||||||
</td>
|
</td>
|
||||||
{/* <td className="al-r">{item.paralQty}</td> */}
|
{/* <td className="al-r">{item.paralQty}</td> */}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user