代码备份

pro
anthonywj 2 years ago
parent 9988521e9f
commit f0df88f77a

@ -24,3 +24,22 @@ export function updateConfig(data) {
data: data data: data
}); });
} }
//查询已选入扫码单据类型
export function getBusList(params) {
return axios({
url: "/system/third/syncData/getBus",
method: "get",
params: params
});
}
//添加扫码单据类型
export function addBus(data) {
return axios({
url: "/system/third/syncData/addBus",
method: "post",
data: data
});
}

@ -1,14 +1,14 @@
<template> <template>
<div> <div>
<el-form> <el-form>
<el-card style="margin-top: -10px;padding-top:10px "> <el-card style="margin-top: -10px;padding-top:10px ">
<el-row :gutter="20" type="flex"> <el-row :gutter="20" type="flex">
<el-col :span="80"> <el-col :span="24">
<!-- :disabled="true" 这个标识启用标识不能修改--> <!-- :disabled="true" 这个标识启用标识不能修改-->
<el-form-item label="单据类型:" label-width="120px"> <el-form-item label="单据类型:" label-width="120px">
<el-input <el-input
size="mini" size="mini"
splaceholder="请输入内容" splaceholder="请输入内容" style="width: 80%"
v-model="inputQuery.name" v-model="inputQuery.name"
></el-input> ></el-input>
</el-form-item> </el-form-item>
@ -16,22 +16,23 @@
</el-row> </el-row>
<el-row :gutter="20" type="flex"> <el-row :gutter="20" type="flex">
<el-col :span="50"> <el-col :span="24">
<el-form-item label="单据类型代码:" label-width="120px"> <el-form-item label="单据类型代码:" label-width="120px">
<el-input <el-input
size="mini" size="mini"
splaceholder="请输入内容" style="width: 80%"
v-model="inputQuery.action" splaceholder="请输入内容"
></el-input> v-model="inputQuery.action"
</el-form-item> ></el-input>
</el-col> </el-form-item>
</el-col>
</el-row> </el-row>
<el-row :gutter="20" type="flex"> <el-row :gutter="20" type="flex">
<el-col :span="50"> <el-col :span="24">
<el-form-item label="单据起始上传:" label-width="120px"> <el-form-item label="单据起始上传:" label-width="120px">
<el-input <el-input
size="mini" size="mini"
splaceholder="请输入内容" splaceholder="请输入内容" style="width: 80%"
:disabled="true" :disabled="true"
v-model="inputQuery.createTime" v-model="inputQuery.createTime"
></el-input> ></el-input>
@ -39,41 +40,38 @@
</el-col> </el-col>
</el-row> </el-row>
<el-row :gutter="20" type="flex"> <el-row :gutter="20" type="flex">
<el-col :span="50"> <el-col :span="24">
<el-form-item label="单据状态:" label-width="120px"> <el-form-item label="单据状态:" label-width="120px">
<el-radio-group v-model="configQuery.orderStatus" :disabled="configQuery.autoUpload"> <el-radio-group v-model="configQuery.orderStatus" :disabled="configQuery.autoUpload">
<el-radio :label="1" :value="1" @change="handleRadioChange"></el-radio> <el-radio :label="1" :value="1" @change="handleRadioChange"></el-radio>
<el-radio :label="2" :value="2" @change="handleRadioChange"></el-radio> <el-radio :label="2" :value="2" @change="handleRadioChange"></el-radio>
<el-radio :label="3" :value="3" @change="handleRadioChange"></el-radio> <el-radio :label="3" :value="3" @change="handleRadioChange"></el-radio>
</el-radio-group> </el-radio-group>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<el-row :gutter="20" type="flex"> <el-row :gutter="20" type="flex">
<el-col :span="50"> <el-col :span="24">
<el-form-item label="单据来源:" label-width="120px"> <el-form-item label="单据来源:" label-width="120px">
<el-select <el-select
v-model="configQuery.orderSources" v-model="configQuery.orderSources"
multiple multiple
collapse-tags collapse-tags
style="margin-left: 0px;width: 250px" style="width: 80%"
placeholder="请选择" placeholder="请选择"
> >
<el-option label="web端新增单据" value="checkWebNew"></el-option> <el-option label="web端新增单据" value="checkWebNew"></el-option>
<el-option label="手持终端未校验单据" value="checkPdaUn"></el-option> <el-option label="手持终端未校验单据" value="checkPdaUn"></el-option>
<el-option label="手持终端已校验单据" value="checkPdaEd"></el-option> <el-option label="手持终端已校验单据" value="checkPdaEd"></el-option>
<el-option label="UDIMS平台" value="checkUdims"></el-option> <el-option label="UDIMS平台" value="checkUdims"></el-option>
<el-option label="UDI扫码通" value="checkPc"></el-option> <el-option label="UDI扫码通" value="checkPc"></el-option>
<el-option label="自助平台同步" value="checkSp"></el-option> <el-option label="自助平台同步" value="checkSp"></el-option>
<el-option label="缺量补单" value="checkChange"></el-option> <el-option label="缺量补单" value="checkChange"></el-option>
<el-option label="平衡补单" value="checkBalacne"></el-option> <el-option label="平衡补单" value="checkBalacne"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col>
</el-col>
</el-row> </el-row>
</el-card> </el-card>
@ -96,24 +94,23 @@ export default {
methods: { methods: {
handleRadioChange(val) { handleRadioChange(val) {
if (val === 1) { if (val === 1) {
this.configQuery.orderUnCheck=1; this.configQuery.orderUnCheck = 1;
this.configQuery.orderUnReceive=0; this.configQuery.orderUnReceive = 0;
this.configQuery.orderScanFinish=0; this.configQuery.orderScanFinish = 0;
} }
if (val === 2) { if (val === 2) {
this.configQuery.orderUnCheck=0; this.configQuery.orderUnCheck = 0;
this.configQuery.orderUnReceive=1; this.configQuery.orderUnReceive = 1;
this.configQuery.orderScanFinish=0; this.configQuery.orderScanFinish = 0;
} }
if (val === 3) { if (val === 3) {
this.configQuery.orderUnCheck=0; this.configQuery.orderUnCheck = 0;
this.configQuery.orderUnReceive=0; this.configQuery.orderUnReceive = 0;
this.configQuery.orderScanFinish=1; this.configQuery.orderScanFinish = 1;
} }
}, },
}, },
data() { data() {
return { return {
@ -134,7 +131,7 @@ export default {
checkBalacne: null, checkBalacne: null,
busTypes: [], busTypes: [],
orderSources: [], // orderSources: [], //
orderStatus:3,// orderStatus: 3,//
}, },
} }
} }

@ -51,116 +51,54 @@
</el-descriptions-item> </el-descriptions-item>
</el-descriptions> </el-descriptions>
<el-descriptions class="margin-top" title="上传至第三方系统" :column="1" style="margin-top: 30px"
border>
<el-descriptions-item> <div style="float: right;margin-bottom: 10px;margin-right: 25px;margin-top: 18px">
<template slot="label"> <el-button type="primary" size="small"
单据时间 :disabled="configQuery.autoUpload"
</template> @click="addBusTypeDialog()">添加扫码单据类型
</el-button>
<el-row :gutter="20" class="el-row" type="flex"> </div>
<el-col :span="20" class="el-col"> <el-table
<div> :data="checkedBusTypes"
<span>上传起始时间:&nbsp;</span> border
<el-date-picker style="width: 100%"
type="date" highlight-current-row
v-model="configQuery.orderStartTime" >
format="yyyy-MM-dd" <el-table-column label="序号" type="index"></el-table-column>
value-format="yyyy-MM-dd" <el-table-column
:disabled="configQuery.autoUpload" label="单据类型"
placeholder="选择日期"> prop="name"
</el-date-picker> show-overflow-tooltip
</div> ></el-table-column>
</el-col> <el-table-column
</el-row> label="单据类型代码"
</el-descriptions-item> prop="action"
show-overflow-tooltip
<el-descriptions-item> ></el-table-column>
<template slot="label"> <el-table-column
单据(单据状态) label="单据状态"
</template> prop=""
<el-checkbox v-model="configQuery.orderUnCheck" :disabled="configQuery.autoUpload"> show-overflow-tooltip
</el-checkbox> ></el-table-column>
<el-checkbox v-model="configQuery.orderUnReceive" :disabled="configQuery.autoUpload"> <el-table-column label="操作">
</el-checkbox> <template slot-scope="scope">
<el-checkbox v-model="configQuery.orderScanFinish" :disabled="configQuery.autoUpload"> <el-button
</el-checkbox> type="text"
</el-descriptions-item> size="small"
@click.native.stop="printUpload(scope.row)"
<el-descriptions-item> >编辑
<template slot="label"> </el-button
单据来源 >
<el-button
type="text"
size="small"
@click.native="removeBus(scope.$index, scope.row)"
>移除
</el-button
>
</template> </template>
<el-checkbox v-model="configQuery.checkWebNew">web </el-table-column>
</el-checkbox> </el-table>
<el-checkbox v-model="configQuery.checkPdaUn">
</el-checkbox>
<el-checkbox v-model="configQuery.checkPdaEd">
</el-checkbox>
<el-checkbox v-model="configQuery.checkUdims">UDIMS
</el-checkbox>
<el-checkbox v-model="configQuery.checkPc">UDI</el-checkbox>
<el-checkbox v-model="configQuery.checkSp"></el-checkbox>
<el-checkbox v-model="configQuery.checkChange">
</el-checkbox>
<el-checkbox v-model="configQuery.checkBalacne">
</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"
:disabled="configQuery.autoUpload"
@click="addBusTypeDialog()">添加扫码单据类型
</el-button>
</div>
<el-table
:data="checkedBusTypes"
border
style="width: 100%"
highlight-current-row
>
<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="单据状态"
prop=""
show-overflow-tooltip
></el-table-column>
<el-table-column label="操作">
<template slot-scope="scope">
<el-button
type="text"
size="small"
@click.native.stop="printUpload(scope.row)"
>编辑
</el-button
>
<el-button
type="text"
size="small"
@click.native="removeBus(scope.$index, scope.row)"
>移除
</el-button
>
</template>
</el-table-column>
</el-table>
</el-descriptions-item>
</el-descriptions>
</el-card> </el-card>
<el-dialog <el-dialog
@ -214,7 +152,6 @@
show-overflow-tooltip show-overflow-tooltip
></el-table-column> ></el-table-column>
</el-table> </el-table>
<pagination <pagination
v-show="total>0" v-show="total>0"
:total="total" :total="total"
@ -230,7 +167,7 @@
<script> <script>
import modifyDialog from "./uploadModify"; import modifyDialog from "./uploadModify";
import {getBusTypeList} from "@/api/basic/busType"; import {getBusTypeList} from "@/api/basic/busType";
import {getConfig, saveConfig, updateConfig} from "@/api/thrsys/thrUploadSet"; import {addBus, getBusList, getConfig, saveConfig, updateConfig} from "@/api/thrsys/thrUploadSet";
import {isBlank} from "@/utils/strUtil"; import {isBlank} from "@/utils/strUtil";
import {filterListInvoice} from "@/api/inout/orderDetailBiz"; import {filterListInvoice} from "@/api/inout/orderDetailBiz";
import {updateBasicThirdSys} from "@/api/thrsys/basicThirdSys"; import {updateBasicThirdSys} from "@/api/thrsys/basicThirdSys";
@ -238,14 +175,6 @@ import modifyDetailDialog from "@/views/thirdSys/api/BasicThirdSysDetailModify";
import DialogEditBusUpload from "@/views/thirdSys/api/DialogEditBusUpload"; import DialogEditBusUpload from "@/views/thirdSys/api/DialogEditBusUpload";
import DialogEditBusDown from "@/views/thirdSys/api/DialogEditBusDown"; import DialogEditBusDown from "@/views/thirdSys/api/DialogEditBusDown";
const formJson = {
site_id: "",
site_name: "",
describe: "",
ads: [],
};
export default { export default {
name: "uploadSetting", name: "uploadSetting",
data() { data() {
@ -346,7 +275,7 @@ export default {
cancelDialog() { cancelDialog() {
this.getBuType(); this.getBuType();
this.Updocument = false; this.Updocument = false;
// this.modifyBusYypeDialogVisible = false; // this.modifyBusYypeDialogVisible = false;
}, },
@ -362,26 +291,39 @@ export default {
}).catch(() => { }).catch(() => {
}); });
}, },
//
getSelectBus() {
getBusList().then((res) => {
if (res.code == 20000)
this.checkedBusTypes = res.data;
}).catch((error) => {
this.loading = false;
});
},
getConfig() { getConfig() {
getConfig().then((res) => { getConfig().then((res) => {
this.configQuery = res.data; this.configQuery = res.data;
this.checkedBusTypes = this.configQuery.busTypes;
if (this.configQuery.busTypes === null) {
this.$message.error(res.message);
}
}).catch((error) => { }).catch((error) => {
this.loading = false; this.loading = false;
this.list = []; });
this.total = 0;
})
}, },
addBusType() { addBusType() {
let selectedData = this.multipleSelection; let selectedData = this.multipleSelection;
selectedData.forEach((item) => {
item.outChange = false;
this.checkedBusTypes.push(item);
})
this.addBusDialogVisible = false; this.addBusDialogVisible = false;
let query = {
busTypes: selectedData,
};
addBus(query).then((res) => {
if (res.code == 20000) {
this.checkedBusTypes = this.res.data;
} else {
this.$message.error(res.message);
}
}).catch((error) => {
this.loading = false;
})
}, },
handleCheckedChange(row) { handleCheckedChange(row) {
this.multipleSelection = row; this.multipleSelection = row;
@ -410,6 +352,7 @@ export default {
}, },
created() { created() {
this.getBuType(); this.getBuType();
this.getSelectBus();
}, },
}; };
</script> </script>

Loading…
Cancel
Save