|
@@ -87,7 +87,7 @@
|
|
|
label: item.materialName + ' - ' + item.specifications,
|
|
|
value: item.materialId,
|
|
|
specification: item.specifications,
|
|
|
- cntLimit: item.cnt - item.lockCnt,
|
|
|
+ cntLimit: Number(item.cnt) + Number(item.lockCnt),
|
|
|
cnt: 0,
|
|
|
sourceCategory: '2'
|
|
|
})
|
|
@@ -98,7 +98,7 @@
|
|
|
label: item.materialName + ' - ' + item.specifications,
|
|
|
value: item.materialId,
|
|
|
specification: item.specifications,
|
|
|
- cntLimit: item.cnt - item.lockCnt
|
|
|
+ cntLimit: Number(item.cnt) + Number(item.lockCnt)
|
|
|
})
|
|
|
})
|
|
|
}
|