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="序号" type="index" width="60" fixed></el-table-column>
<el-table-column label="扫码单据类型" prop="curName" 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="curInvName" fixed></el-table-column>
<el-table-column label="委托验收仓库" prop="entrustInvName" fixed> <el-table-column label="当前分库" prop="invWarehouseName" fixed></el-table-column>
</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 label="委托验收人" prop="employeeName" fixed>
</el-table-column> </el-table-column>
<el-table-column label="操作" fixed="right"> <el-table-column label="操作" fixed="right">

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

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

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

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

@ -93,7 +93,7 @@
<span>{{ sourceMap[scope.row.sourceType] }}</span> <span>{{ sourceMap[scope.row.sourceType] }}</span>
</template> </template>
</el-table-column> </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="单据状态"> <el-table-column label="单据状态">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.status | statusFilterName }} {{ scope.row.status | statusFilterName }}

Loading…
Cancel
Save