|
@@ -152,7 +152,6 @@
|
152
|
152
|
>
|
153
|
153
|
<div style="display:flex;">
|
154
|
154
|
<el-input
|
155
|
|
- @input="getSupplyCount(scope.row.count,scope.row.max_unit,scope.row.min_number,scope.$index,scope.row.total_count,scope.row.max_unit_fisrt,scope.row.min_unit_fisrt)"
|
156
|
155
|
oninput="value=value.replace(/\D|^0/g,'')"
|
157
|
156
|
style="width:80px"
|
158
|
157
|
placeholder="请输入出库数量"
|
|
@@ -843,28 +842,28 @@ export default {
|
843
|
842
|
}
|
844
|
843
|
}
|
845
|
844
|
|
846
|
|
- var count_total = 0
|
847
|
|
- if(val.max_unit == val.max_unit_fisrt){
|
848
|
|
- count_total = val.count * val.min_number
|
849
|
|
- }
|
|
845
|
+ // var count_total = 0
|
|
846
|
+ // if(val.max_unit == val.max_unit_fisrt){
|
|
847
|
+ // count_total = val.count * val.min_number
|
|
848
|
+ // }
|
850
|
849
|
|
851
|
|
- if(val.max_unit == val.min_unit_fisrt){
|
852
|
|
- count_total = val.count
|
853
|
|
- }
|
854
|
|
- if(count_total > val.total_count){
|
855
|
|
- this.$message.error("出库数量不能大于剩余库存")
|
856
|
|
- for(let i=0;i<this.recordInfo.recordData.length;i++){
|
857
|
|
- if(index == i){
|
858
|
|
- this.recordInfo.recordData[i].count = ""
|
859
|
|
- }
|
860
|
|
- }
|
861
|
|
- }else{
|
862
|
|
- for(let i=0;i<this.recordInfo.recordData.length;i++){
|
863
|
|
- if(index == i){
|
864
|
|
- this.recordInfo.recordData[i].count = val.count
|
865
|
|
- }
|
866
|
|
- }
|
867
|
|
- }
|
|
850
|
+ // if(val.max_unit == val.min_unit_fisrt){
|
|
851
|
+ // count_total = val.count
|
|
852
|
+ // }
|
|
853
|
+ // if(count_total > val.total_count){
|
|
854
|
+ // this.$message.error("出库数量不能大于剩余库存")
|
|
855
|
+ // for(let i=0;i<this.recordInfo.recordData.length;i++){
|
|
856
|
+ // if(index == i){
|
|
857
|
+ // this.recordInfo.recordData[i].count = ""
|
|
858
|
+ // }
|
|
859
|
+ // }
|
|
860
|
+ // }else{
|
|
861
|
+ // for(let i=0;i<this.recordInfo.recordData.length;i++){
|
|
862
|
+ // if(index == i){
|
|
863
|
+ // this.recordInfo.recordData[i].count = val.count
|
|
864
|
+ // }
|
|
865
|
+ // }
|
|
866
|
+ // }
|
868
|
867
|
|
869
|
868
|
|
870
|
869
|
|