|
|
|
@ -226,7 +226,7 @@ |
|
|
|
</el-form-item> |
|
|
|
</el-form> |
|
|
|
<el-form :inline="true" label-position="top" style="margin-left: 7px;margin-top: 0px;"> |
|
|
|
<el-form-item :label="'混炼胶报工重量:'"> |
|
|
|
<el-form-item :label="'混炼胶报工重量:'" :disabled="reportFlag"> |
|
|
|
<el-input v-model="reportData.qtyReal" type="number" style="width: 130px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="'库存抵扣数量:'"> |
|
|
|
@ -265,6 +265,7 @@ |
|
|
|
}, |
|
|
|
data () { |
|
|
|
return { |
|
|
|
reportFlag:false, |
|
|
|
searchData:{ |
|
|
|
taskNo:'', |
|
|
|
partNo:'', |
|
|
|
@ -434,7 +435,11 @@ |
|
|
|
|
|
|
|
}, |
|
|
|
reportTaskModal(row){ |
|
|
|
|
|
|
|
if(row.orderRef1==''|row.orderRef1==null){ |
|
|
|
this.reportFlag=true |
|
|
|
}else { |
|
|
|
this.reportFlag=false |
|
|
|
} |
|
|
|
this.reportData.site=row.site; |
|
|
|
this.reportData.taskNo=row.taskNo; |
|
|
|
this.reportData.qtyRequired=row.taskQty; |
|
|
|
@ -527,6 +532,11 @@ |
|
|
|
return false |
|
|
|
}else { |
|
|
|
let row=list[0] |
|
|
|
if(row.orderRef1==''|row.orderRef1==null){ |
|
|
|
this.reportFlag=true |
|
|
|
}else { |
|
|
|
this.reportFlag=false |
|
|
|
} |
|
|
|
this.reportData.site=row.site; |
|
|
|
this.reportData.taskNo=row.taskNo; |
|
|
|
this.reportData.qtyRequired=row.taskQty; |
|
|
|
|