1.调整样式,隐藏仓库用户主管显示,委托验收页面显示分库和委托验收分库

fencang
x_z 3 years ago
parent 015e087d82
commit 48f437d366

@ -26,8 +26,9 @@
<el-table-column label="序号" type="index" width="60" fixed></el-table-column>
<el-table-column label="扫码单据类型" prop="curName" fixed></el-table-column>
<el-table-column label="当前仓库" prop="curInvName" fixed></el-table-column>
<el-table-column label="委托验收仓库" prop="entrustInvName" fixed>
</el-table-column>
<el-table-column label="当前分库" prop="invWarehouseName" fixed></el-table-column>
<el-table-column label="委托验收仓库" prop="entrustInvName" fixed></el-table-column>
<el-table-column label="委托验收分库" prop="entrustSubInvName" fixed></el-table-column>
<el-table-column label="委托验收人" prop="employeeName" fixed>
</el-table-column>
<el-table-column label="操作" fixed="right">

@ -181,6 +181,7 @@
<el-button
type="text"
size="small"
:disabled="!configParms.basicInv"
@click.native.stop="handleSubDel(scope.row)"
>删除
</el-button
@ -214,14 +215,6 @@
label="用户名"
min-width="30%">
</el-table-column>
<el-table-column
prop="isDirector"
label="主管"
min-width="30%">
<template slot-scope="scope">
<span>{{ isDirectorMap[scope.row.director] }}</span>
</template>
</el-table-column>
<el-table-column
label="操作"
min-width="30%"
@ -680,10 +673,6 @@ export default {
true: "寄售",
false: "仓库",
},
isDirectorMap: {
true: "是",
false: "否",
},
directorMap: {
true: "取消主管",
false: "设为主管",

@ -471,7 +471,6 @@ export default {
}
},
addOrders(row) {
console.log(row)
this.idQuery.id = '';
this.idQuery.actDate = '';
this.idQuery.corpOrderId = '';

@ -427,7 +427,6 @@ export default {
submitOrderWeb(tQuery)
.then((response) => {
console.log(response)
if (response.code === 20000) {
this.$message.success("提交成功");
this.closeDialog();
@ -594,7 +593,6 @@ export default {
tQuery.orderId = this.idQuery.id;
tQuery.actDate = parseTime(this.formData.actDate, '{y}-{m}-{d} {h}:{i}:{s}');
tQuery.action = tQuery.billType
console.log("tQuery = " + tQuery)
this.addCodeSubmit(tQuery);
this.$refs.inputRef.select();
},
@ -687,7 +685,6 @@ export default {
},
deleteCode(index, row) {
console.log(row.id)
this.$confirm("是否确定移除一个条码?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
@ -811,13 +808,11 @@ export default {
},
actionChange(item) {
this.curAction = this.getActionItem(item);
console.log( this.curAction.codeFillCheck)
this.$set(this.formData, "codeFillCheck", this.curAction.codeFillCheck);
// this.formData.locStorageCode = this.curAction.storageCode;
},
//
bindRl(val) {
console.log("curRow.erpId = " + val.id);
this.curRow = val;
this.selectRlVisible = true;
},
@ -828,7 +823,6 @@ export default {
id: this.curRow.id,
relId: row.id,
};
console.log("row.relId = " + row.id);
updateCodeBindSup(query).then((response) => {
if (response.code == 20000) {
this.$message.success("绑定成功");
@ -850,7 +844,6 @@ export default {
});
},
closeBindDialog(val) {
console.log("closeBindDialog" + val);
this.selectRlVisible = false;
this.dialogTableVisible = false;
},

@ -1240,6 +1240,13 @@ export default {
margin-top: 10px;
}
/**
解决el-input输入框 type=number时输入中文光标上移问题
*/
.el-input__inner{
line-height: 1px !important;
}
</style>

@ -93,7 +93,7 @@
<span>{{ sourceMap[scope.row.sourceType] }}</span>
</template>
</el-table-column>
<el-table-column label="单据日期" prop="billdate"></el-table-column>
<el-table-column label="单据日期" prop="billdate" width="150"></el-table-column>
<el-table-column label="单据状态">
<template slot-scope="scope">
{{ scope.row.status | statusFilterName }}

Loading…
Cancel
Save