同步设置修改,规格型号问题(未解决)

master
anthonywj 3 years ago
parent 2a536b3dce
commit 169f4fa538

@ -1,5 +1,5 @@
{
"BASE_URL": "http://192.168.0.109:9996",
"SERVER_IP": "http://192.168.0.109:9996",
"BASE_URL": "http://127.0.0.1:9996",
"SERVER_IP": "http://127.0.0.1:9996",
"hosp_name": "诏安县总医院(测试)"
}

@ -390,7 +390,7 @@
<style type="text/scss" lang="scss">
@import "../../styles/mixin";
.el-table .cell.el-tooltip {
.el-table .cell {
white-space: pre-wrap;
}
.el-header {

@ -87,9 +87,6 @@
</el-table-column>
<el-table-column label="往来单位" prop="fromCorp" width="250">
<template slot-scope="scope">
{{ scope.row.fromCorp }}
</template>
</el-table-column>
<el-table-column
label="创建时间"

@ -11,7 +11,7 @@
</template>
<el-row :gutter="20" class="el-row" type="flex">
<el-col :span="4" class="el-col" style="margin-top: 6px">
<el-checkbox v-model="configQuery.downstreamEnable"></el-checkbox>
<el-checkbox v-model="configQuery.downstreamEnable"></el-checkbox>
</el-col>
<el-col :span="20" class="el-col">
<div>
@ -45,13 +45,17 @@
<el-checkbox v-model="configQuery.basicProducts"></el-checkbox>
<el-checkbox v-model="configQuery.basicCorp"></el-checkbox>
<el-checkbox v-model="configQuery.basicInv"></el-checkbox>
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
第三方基础信息
</template>
<el-checkbox v-model="configQuery.basicThirdProducts"></el-checkbox>
<el-checkbox v-model="configQuery.basicThirdCorp"></el-checkbox>
<el-checkbox v-model="configQuery.basicThirdInv"></el-checkbox>
<el-checkbox v-model="configQuery.basicThirdBusOrder"></el-checkbox>
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
国家库DI数据
@ -63,18 +67,6 @@
</el-descriptions>
<el-descriptions class="margin-top" title="" :column="1" :size="100" style="margin-top: 30px" border>
<el-descriptions-item label="单据(单据类型)" label-style="width: 150px">
<el-checkbox-group v-model="checkedBusTypes" @change="handleCheckedChange" >
<el-checkbox
style="padding-top: 10px"
v-for="busType in busTypes" :label="busType" :key="busType.action"
:value="busType.action">{{ busType.name }}
</el-checkbox>
</el-checkbox-group>
</el-descriptions-item>
<el-descriptions-item>
<template slot="label">
单据(单据状态)
@ -83,9 +75,96 @@
<el-checkbox v-model="configQuery.orderUnReceive"></el-checkbox>
<el-checkbox v-model="configQuery.orderScanFinish"></el-checkbox>
</el-descriptions-item>
<el-descriptions-item label="单据(单据类型)" label-style="width: 150px">
<div style="float: right;margin-bottom: 10px;margin-right: 25px">
<el-button type="primary" size="small" @click="addBusTypeDialog()"></el-button>
</div>
<el-table
:data="checkedBusTypes"
border
style="width: 100%"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="单据类型"
prop="name"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="单据类型代码"
prop="action"
show-overflow-tooltip
></el-table-column>
<el-table-column label="操作" fixed="right">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.native="remveBus(scope.$index, scope.row)"
>移除
</el-button
>
</template>
</el-table-column>
</el-table>
</el-descriptions-item>
<!-- <el-descriptions-item label="单据(单据类型)" label-style="width: 150px">-->
<!-- <el-checkbox-group v-model="checkedBusTypes" @change="handleCheckedChange">-->
<!-- <el-checkbox-->
<!-- style="padding-top: 10px"-->
<!-- v-for="busType in busTypes" :label="busType" :key="busType.action"-->
<!-- :value="busType.action">{{ busType.name }}-->
<!-- </el-checkbox>-->
<!-- </el-checkbox-group>-->
<!-- </el-descriptions-item>-->
</el-descriptions>
<el-dialog
title="添加扫码单据类型"
:visible.sync="addBusDialogVisible"
width="55%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="addBusDialogVisible"
>
<div style="float: right;margin-bottom: 10px;margin-right: 25px">
<el-button type="primary" size="small" @click="addBusType()"></el-button>
</div>
<el-table
:data="busTypes"
border
style="width: 100%"
@selection-change="handleCheckedChange"
>
<el-table-column type="selection" width="55" :selectable="checkSelectable"></el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="单据类型"
prop="name"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="单据类型代码"
prop="action"
show-overflow-tooltip
></el-table-column>
</el-table>
<el-pagination
:page-size="busQuery.limit"
@current-change="handleCurrentChange"
layout="prev, pager, next"
:total="total"
></el-pagination>
</el-dialog>
</el-card>
</template>
@ -119,7 +198,14 @@ export default {
busTypes: [],
},
checkedBusTypes: [],
busQuery: {
page: 1,
limit: 10,
},
busTypes: [],
multipleSelection: [],
addBusDialogVisible: false,
total: 0,
}
},
methods: {
@ -127,22 +213,19 @@ export default {
findConfig()
.then((response) => {
if (response.code == 20000) {
// debugger
this.configQuery = response.data;
this.checkedBusTypes = [];
if (this.configQuery.busTypes != null) {
for (let i = 0; i < this.configQuery.busTypes.length; i++) {
for (let k = 0; k < this.busTypes.length; k++) {
if (this.busTypes[k].action == this.configQuery.busTypes[i]) {
this.checkedBusTypes.push(this.busTypes[k]);
this.busTypes[k].isSelect = true;
}
}
}
}
console.log(this.checkedBusTypes);
} else {
this.$message.error(response.message);
}
@ -160,8 +243,6 @@ export default {
this.configQuery.busTypes.push(this.checkedBusTypes[i].action);
}
}
updateConfig(this.configQuery)
.then((response) => {
this.loading = false;
@ -175,23 +256,45 @@ export default {
});
},
handleCheckedChange() {
handleCheckedChange(val) {
this.multipleSelection = val;
},
getBusType() {
let query = {
enabled: true,
};
getBussinessType(query)
getBussinessType(this.busQuery)
.then((response) => {
this.busTypes = response.data.list || [];
this.total = response.data.total || 0;
this.getConfig();
})
.catch(() => {
});
},
addBusTypeDialog() {
this.addBusDialogVisible = true;
this.multipleSelection = [];
},
addBusType(){
var selectData = this.multipleSelection;
selectData.forEach((obj) => {
this.checkedBusTypes.push(obj);
});
this.addBusDialogVisible = false;
},
remveBus(index,row){
this.checkedBusTypes.splice(index,1);
},
checkSelectable(row) {
return !row.isSelect;
},
handleCurrentChange(val) {
this.busQuery.page = val;
this.getBusType();
},
},
created() {
this.headers = {

@ -68,9 +68,6 @@
</el-table-column>
<el-table-column label="往来单位" prop="fromCorp" width="250">
<template slot-scope="scope">
{{ scope.row.fromCorp }}
</template>
</el-table-column>
<el-table-column label="当前仓库" prop="locStorageCode" width="150">
<template slot-scope="scope">

@ -115,9 +115,6 @@
</el-table-column>
<el-table-column label="往来单位" prop="fromCorp" width="250">
<template slot-scope="scope">
{{ scope.row.fromCorp }}
</template>
</el-table-column>
<el-table-column label="当前仓库" prop="locStorageCode" width="150">
<template slot-scope="scope">

@ -78,9 +78,7 @@
</el-table-column>
<el-table-column label="往来单位" prop="fromCorp" width="220">
<template slot-scope="scope">
{{ scope.row.fromCorp }}
</template>
</el-table-column>
<el-table-column label="当前仓库" prop="locStorageCode" width="150">
<template slot-scope="scope">

@ -91,11 +91,6 @@
prop="id"
show-overflow-tooltip="true"
></el-table-column>
<!-- <el-table-column
label="来源订单号"
prop="corpOrderId"
:show-overflow-tooltip="true"
></el-table-column> -->
<el-table-column label="来源" prop="fromType">
<template slot-scope="scope">
@ -105,9 +100,6 @@
</el-table-column>
<el-table-column label="往来单位" prop="fromCorp" width="250">
<template slot-scope="scope">
{{ scope.row.fromCorp }}
</template>
</el-table-column>
<el-table-column label="当前仓库" prop="locStorageCode" width="150">
<template slot-scope="scope">

@ -101,9 +101,6 @@
</template>
</el-table-column>
<el-table-column label="往来单位" prop="fromCorp" width="250">
<template slot-scope="scope">
{{ scope.row.fromCorp }}
</template>
</el-table-column>
<el-table-column label="当前仓库" prop="locStorageCode" width="150">
<template slot-scope="scope">

Loading…
Cancel
Save