单据数量显示问题

ywj_dev
anthonywj 2 years ago
parent 9cecb43ec7
commit d0419d144f

@ -139,7 +139,7 @@
<el-table-column label="规格型号" prop="spec"></el-table-column>
<el-table-column label="批次号" prop="batchNo"></el-table-column>
<el-table-column label="单据数量" prop="count"></el-table-column>
<el-table-column label="实际数量" prop="reCount"></el-table-column>
<!-- <el-table-column label="实际数量" prop="scanCount"></el-table-column>-->
<el-table-column label="生产日期" prop="productDate">
<template slot-scope="scope">
<span>{{ convertDateFun(scope.row.productDate) }}</span>
@ -150,11 +150,9 @@
<span>{{ convertDateFun(scope.row.expireDate) }}</span>
</template>
</el-table-column>
<el-table-column label="价格" prop="price"></el-table-column>
<el-table-column label="生产企业" prop="ylqxzcrbarmc"></el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column>
</el-table>
<pagination

@ -42,25 +42,31 @@
<el-table v-loading="loading" :data="codeArray" style="width: 100%;" max-height="350" height="350"
border ref="multipleTable">
<el-table-column label="序号" type="index" width="50"></el-table-column>
<el-table-column label="内部码" prop="udiCode"></el-table-column>
<el-table-column label="状态">
<template slot-scope="scope">
<span>{{ statusMap[scope.row.status] }}</span>
</template>
<el-table-column label="物资名称" prop="cpmctymc" width="160" show-overflow-tooltip>
</el-table-column>
<el-table-column label="规格型号" prop="ggxh" width="160" show-overflow-tooltip>
</el-table-column>
<el-table-column label="批次号" prop="batchNo" width="120" show-overflow-tooltip>
</el-table-column>
<el-table-column label="标签数量">
<el-table-column label="内部码" prop="udiCode" width="200" show-overflow-tooltip></el-table-column>
<!-- <el-table-column label="状态" width="100">-->
<!-- <template slot-scope="scope">-->
<!-- <span>{{ statusMap[scope.row.status] }}</span>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="标签数量" width="120">
<template slot-scope="scope">
<el-input size="small" v-model="scope.row.count" placeholder="请输入打印标签数量" style="width: 50%"
oninput="value=value.replace(/[^\d]/g,'')"></el-input>
<!-- <span>{{ scope.row.reCount }}</span>-->
</template>
</el-table-column>
<el-table-column label="时间" prop="create_time" show-overflow-tooltip>
<template slot-scope="scope">
<i class="el-icon-time"></i>
<span>{{ scope.row.updateTime }}</span>
</template>
</el-table-column>
<!-- <el-table-column label="时间" prop="create_time" show-overflow-tooltip width="150">-->
<!-- <template slot-scope="scope">-->
<!-- <i class="el-icon-time"></i>-->
<!-- <span>{{ scope.row.updateTime }}</span>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column label="操作" width="150">
<template slot-scope="scope">
<el-button

@ -308,7 +308,7 @@
></el-table-column>
<el-table-column
label="扫码数量"
prop="reCount"
prop="count"
></el-table-column>
<el-table-column
label="实际数量"

@ -227,7 +227,7 @@
></el-table-column>
<el-table-column
label="扫码数量"
prop="reCount"
prop="scanCount"
width="100"
></el-table-column>
<el-table-column

@ -252,7 +252,7 @@
></el-table-column>
<el-table-column
label="扫码数量"
prop="reCount"
prop="scanCount"
width="100"
></el-table-column>
<el-table-column
@ -372,7 +372,7 @@
<!-- ></el-table-column>-->
<el-table-column
label="扫码数量"
prop="reCount"
prop="count"
></el-table-column>
<el-table-column
label="实际数量"
@ -440,7 +440,6 @@ import DialogCheck from "@/views/inout/DialogCheck";
import {getBizDetailList} from "@/api/inout/orderDetailBiz";
const formJson = {
site_id: "",
site_name: "",
@ -453,8 +452,8 @@ export default {
data() {
return {
showSearch: true,
Upinvoice:false,
currentManufacturer:{},
Upinvoice: false,
currentManufacturer: {},
filterQuery: {
id: "",
billNo: null,
@ -581,7 +580,7 @@ export default {
acceptOrderVisible: false,
};
},
components: {AcceptOrder,DialogCheck},
components: {AcceptOrder, DialogCheck},
methods: {
onReset() {
this.$router.push({
@ -625,12 +624,12 @@ export default {
this.showSearch = !this.showSearch;
},
upload(row){
upload(row) {
this.currentManufacturer = row;
this.Upinvoice = true;
},
closeCheckDialog(){
closeCheckDialog() {
this.Upinvoice = false;
},
getBusType() {
@ -647,7 +646,7 @@ export default {
});
},
handleSelectionChange(val) {
this.currentRow.billNo=val.billNo;
this.currentRow.billNo = val.billNo;
this.getOrderDetails();
},
//

Loading…
Cancel
Save