Merge branch 'dev' into ywj_dev

# Conflicts:
#	.env.production
dev
anthonywj 2 years ago
commit bd5f896816

@ -15,16 +15,15 @@ ENV = 'production'
# 测试服务器
# VUE_APP_BASE_API = 'http://192.168.0.66:9150/UDI_WMS_MC/'
# 林淑波
# VUE_APP_BASE_API = 'http://192.168.0.231:9150/UDI_WMS_MC/'
# 文明东1
# VUE_APP_BASE_API = 'http://192.168.0.62:9150/UDI_WMS_MC/'
# 文明东2
# VUE_APP_BASE_API = 'http://192.168.0.61:9150/UDI_WMS_MC/'
# 林树波
VUE_APP_BASE_API = 'http://192.168.0.231:9150/UDI_WMS_MC/'
刘恩典
# VUE_APP_BASE_API = 'http://192.168.0.54:9150/UDI_WMS_MC/'

@ -9,7 +9,6 @@ export function authAdminList(query) {
});
}
//根据当前角色,获取是否为客户角色
export function roleCustomers(query) {
return axios({
@ -67,4 +66,18 @@ export function selectUser(query) {
});
}
export function modifyPasswd(data) {
return axios({
url: "/admin/auth/admin/updateUser",
method: "post",
data: data
});
}
export function filterByUser(query) {
return axios({
url: "/admin/auth/admin/selectUser",
method: "get",
params: query
});
}

@ -31,3 +31,11 @@ export function exportExcel(query) {
});
}
export function exportExcelAll(query) {
return axios({
url: "/udiwms/thrProducts/importLog/exportAll",
method: "post",
data: query
});
}

@ -10,10 +10,10 @@
<div class="inv-hos-title">
<span
style="margin-left:8px;color: #2d8cf0;font-size: 14px;">部门:{{ deptName }}</span>
style="margin: 10px;color: #2d8cf0;font-size: 14px;">部门&nbsp:&nbsp{{ deptName }}</span>
<span
style="margin-right: 18px;margin-left:8px;color: #2d8cf0;font-size: 14px;">仓库:{{ inv }}</span>
<span style="font-weight: 500;color:rgb(51 48 48); font-size: 14px;">用户:{{ this.companyName }}</span>
style="margin-right: 18px;margin-left:8px;color: #2d8cf0;font-size: 14px;">仓库&nbsp:&nbsp{{ inv }}</span>
<span style="font-weight: 500;color:rgb(51 48 48); font-size: 14px;">用户&nbsp:&nbsp吴XX{{ this.companyName }}</span>
<span
style="font-weight: 500;color:rgb(51 48 48); font-size: 14px; margin-right: 20px">({{
this.userName
@ -40,6 +40,9 @@
<el-dropdown-item divided @click.native="changeInv">
<span>切换仓库</span>
</el-dropdown-item>
<el-dropdown-item divided @click.native="modifyPassword">
<span>修改密码</span>
</el-dropdown-item>
<el-dropdown-item divided @click.native="logout">
<span>退出登录</span>
</el-dropdown-item>
@ -102,6 +105,78 @@
</el-form>
</el-dialog>
<el-dialog
title="修改密码"
:visible.sync="isVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
width="35%"
v-if="isVisible"
>
<el-form :model="inputQuery" label-width="100px" :rules="formRules" ref="dataForm">
<el-row :gutter="20">
<el-col :span="20">
<el-form-item prop="userName" label="用户账号:">
<el-input
size="small"
placeholder="请输入登录用户账号"
v-model="inputQuery.userName"
@input="change()"
:disabled="true"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="20">
<el-form-item prop="passWord" label="当前密码:">
<el-input
size="small"
placeholder="请输入当前密码"
type="password"
v-model="inputQuery.passWord"
@input="change()"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="20">
<el-form-item prop="newPassword" label="新密码:">
<el-input
size="small"
placeholder="请输入新密码"
type="password"
v-model="inputQuery.newPassword"
@input="change()"
></el-input>
</el-form-item>
</el-col>
</el-row>
<el-row :gutter="20">
<el-col :span="20">
<el-form-item prop="confirmPassword" label="确认密码:">
<el-input
size="small"
placeholder="请输入确认密码"
type="password"
v-model="inputQuery.confirmPassword"
@input="change()"
></el-input>
</el-form-item>
</el-col>
</el-row>
<div style='text-align: center; margin-bottom: 10px;margin-top: 18px ;'>
<el-button type="primary" @click="onSubmit"></el-button>
<el-button @click="closeDialog"></el-button>
</div>
</el-form>
</el-dialog>
</div>
</template>
@ -118,17 +193,35 @@ import RuoYiDoc from '@/components/RuoYi/Doc'
import store from "@/store";
import {filterAllByUser} from "@/api/system/invWarehouse";
import {filterSubByInv, findByDeptUser} from "@/api/system/invSubWarehouse";
import {updateInv} from "@/api/auth/authAdmin";
import {updateInv, modifyPasswd,filterByUser} from "@/api/auth/authAdmin";
import {isRelogin} from "@/utils/request";
import router from "@/router";
export default {
data() {
// let validatePass2 = (rule, value, callback) => {
// if (value === "") {
// callback(new Error(""));
// } else if (value !== this.inputQuery.passWord) {
// callback(new Error("!"));
// } else {
// callback();
// }
// };
return {
inv: store.getters.locInvName,
deptName: store.getters.locDeptName,
selInvVisible: false,
isVisible: false,
userInfo: {},
inputQuery: {
passWord: "",
newPassword: "",
confirmPassword: "",
userName: "",
locInvCode: "",
},
deptList: [],
invList: [],
formRules: {
@ -138,6 +231,19 @@ export default {
locInvCode: [
{required: true, message: "请选择当前仓库", trigger: "blur"}
],
password: [{required: true, message: "请输入密码", trigger: "blur"}],
newPassword: [{required: true, message: "请输入密码", trigger: "blur"}],
confirmPassword: [
{required: true, message: "请确认密码", trigger: "blur"},
// {validator: validatePass2, trigger: "blur"},
],
},
rules: {
password: [{required: true, message: "请输入密码", trigger: "blur"}],
confirmPassword: [
{required: true, message: "请确认密码", trigger: "blur"},
// {validator: validatePass2, trigger: "blur"},
],
},
};
@ -176,6 +282,41 @@ export default {
}
},
methods: {
onSubmit() {
if (this.inputQuery.newPassword != this.inputQuery.confirmPassword) {
this.$message.error("新密码与确认密码不一致!!!!");
return
}
if (this.inputQuery.passWord == this.inputQuery.newPassword) {
this.$message.error("旧密码与新密码不能相同!!!!");
return
}
this.$refs["dataForm"].validate((valid) => {
if (valid) {
this.loading = true;
modifyPasswd(this.inputQuery).then((response) => {
if (response.code === 20000) {
this.loading = false;
this.$confirm('密码重置成功,请点击确定重新登录', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.$store.dispatch('LogOut').then(() => {
location.href = process.env.VUE_APP_CONTEXT_PATH;
})
}).catch(() => {
});
} else {
this.$message.error(response.message);
}
});
} else {
return false;
}
});
},
toggleSideBar() {
this.$store.dispatch('app/toggleSideBar')
},
@ -186,7 +327,7 @@ export default {
type: 'warning'
}).then(() => {
this.$store.dispatch('LogOut').then(() => {
location.href = process.env.VUE_APP_CONTEXT_PATH ;
location.href = process.env.VUE_APP_CONTEXT_PATH;
})
}).catch(() => {
});
@ -195,6 +336,9 @@ export default {
changeInv() {
this.selInvVisible = true;
},
modifyPassword() {
this.isVisible = true;
},
getDeptList() {
this.deptList = [];
@ -206,10 +350,20 @@ export default {
.catch(() => {
});
},
getInputQuery() {
this.inputQuery = [];
filterByUser()
.then((response) => {
this.inputQuery = response.data || [];
// this.getInvList();
})
.catch(() => {
});
},
deptChange() {
this.getInvList();
this.userInfo.locInvCode="";
this.userInfo.locInvCode = "";
},
getInvList() {
@ -225,7 +379,7 @@ export default {
}
})
.catch(() => {
this.selInvVisible=true;
this.selInvVisible = true;
});
},
@ -261,6 +415,8 @@ export default {
closeDialog() {
this.selInvVisible = false;
this.isVisible = false;
this.getDeptList()
this.resetForm();
},
@ -278,12 +434,15 @@ export default {
},
created() {
this.userName = this.$store.getters.name;
this.userInfo = {
id: store.getters.adminId,
locInvCode: store.getters.locInvCode,
locDeptCode: store.getters.locDeptCode,
};
this.userInfo = {
id: store.getters.adminId,
locInvCode: store.getters.locInvCode,
locDeptCode: store.getters.locDeptCode,
};
this.inputQuery = {
userName: this.$store.getters.name,
};
this.getInputQuery();
this.getDeptList();
//this.getInvList()

@ -213,6 +213,7 @@ export default {
return {
query: {
key: "",
corpType: "2",
page: 1,
limit: 20,
},
@ -303,6 +304,7 @@ export default {
});
this.query = {
key: "",
corpType: "2",
page: 1,
limit: 20,
};

@ -107,7 +107,7 @@
width="60%"
append-to-body
v-if="orderMutiVisible"
@close='closeDialog'
@close='closedeStinyDialog'
:close-on-click-modal="false"
:close-on-press-escape="false"
>
@ -250,6 +250,11 @@ export default {
this.filterQuery.page = val.page;
this.getList();
},
closedeStinyDialog(){
this.orderMutiVisible = false;
this.destinyProcessDelectShow = false;
this.destinyProcessCodeShow = false;
},
closeDialog(row) {
this.destinyId = row;
var query = {

@ -3,12 +3,12 @@
<el-card>
<el-form :model="filterQuery" label-width="100px" size="mini">
<el-row>
<el-col :span="4">
<el-col :span="6">
<el-form-item label="模板名称:" class="query-form-item">
<el-input v-model="filterQuery.name" placeholder="请输入模板名称"></el-input>
</el-form-item>
</el-col>
<el-col :span="4">
<el-col :span="6">
<el-form-item label="模板编码:" class="query-form-item">
<el-input v-model="filterQuery.code" placeholder="请输入模板编码"></el-input>
</el-form-item>
@ -28,8 +28,8 @@
<el-table v-loading="loading" :data="list" @current-change="handleDetail" border highlight-current-row
style="width: 100%">
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="模板编码" prop="name" width="260"></el-table-column>
<el-table-column label="模板名称" prop="code" width="260"></el-table-column>
<el-table-column label="模板编码" prop="code" width="260"></el-table-column>
<el-table-column label="模板名称" prop="name" width="260"></el-table-column>
<el-table-column label="备注" prop="remark" width="260"></el-table-column>
<el-table-column label="创建人" prop="createByName" width="260"></el-table-column>
<el-table-column label="创建时间" prop="createTime" width="260"></el-table-column>
@ -61,7 +61,7 @@
<el-table-column label="计量单位" prop="measname"></el-table-column>
<el-table-column label="数量" prop="count"></el-table-column>
<el-table-column label="生产企业" prop="ylqxzcrbarmc"></el-table-column>
<el-table-column label="注册/备案号" prop="certCode"></el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column>
</el-table>
<pagination
v-show="delectTotal>0"

@ -73,6 +73,12 @@ export default {
},
methods: {
onModifySubmit() {
if(isBlank(this.editLogin.name)){
return this.$message.error("模板名称不能为空");
}
if(isBlank(this.editLogin.code)){
return this.$message.error("模板编号不能为空");
}
if (this.editLogin.id != null) {
editModeldestiny(this.editLogin).then(res => {
if (res.code == 20000) {

@ -27,9 +27,9 @@
<el-table v-loading="loading" :data="list" border highlight-current-row style="width: 100%">
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="产品DI" prop="nameCode" width="260"></el-table-column>
<el-table-column label="产品编码" prop="thirdId" width="260"></el-table-column>
<el-table-column label="产品名称" prop="cpmctymc" width="260"></el-table-column>
<el-table-column label="产品DI" prop="nameCode" ></el-table-column>
<el-table-column label="产品编码" prop="thirdId" ></el-table-column>
<el-table-column label="产品名称" prop="cpmctymc" ></el-table-column>
<el-table-column label="规格型号" prop="ggxh"></el-table-column>
<el-table-column label="计量单位" prop="measname"></el-table-column>
<el-table-column label="数量" prop="count">
@ -42,7 +42,7 @@
</template>
</el-table-column>
<el-table-column label="生产企业" prop="ylqxzcrbarmc"></el-table-column>
<el-table-column label="注册/备案号" prop="certCode"></el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column>
<el-table-column label="操作" width="220">
<template slot-scope="scope">
<el-button type="text" size="small" :disabled="scope.row.index === selectedIndex"
@ -73,7 +73,7 @@
:close-on-click-modal="false"
:close-on-press-escape="false"
width="80%"
:before-close="closeDialog"
:before-close="closeProudDialog"
v-if="selectFormVisible"
>
<destinySelectProduct
@ -140,7 +140,6 @@ export default {
.then((response) => {
this.loading = false;
if (response.code === 20000) {
console.log(response)
this.list = response.data.list || [];
this.total = response.data.total || 0;
} else {

@ -131,8 +131,8 @@ export default {
codeArray: [],
editQuery: {},
formMap: {
"add": "新增定数包模板",
"edit": "编辑定数包模板"
"add": "新增定数包",
"edit": "编辑定数包"
},
statusMap: {
0: "草稿",

@ -10,7 +10,7 @@
<el-table-column label="单据数量" prop="count"></el-table-column>
<el-table-column label="扫码数量" prop="reCount"></el-table-column>
<el-table-column label="生产企业" prop="ylqxzcrbarmc"></el-table-column>
<el-table-column label="注册/备案号" prop="certCode"></el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column>
</el-table>
</div>

@ -317,6 +317,7 @@ export default {
components: {udiRlDetailDialog},
created() {
this.getList();
},
};
</script>

@ -82,11 +82,12 @@
<el-table-column type="selection" width="55" :selectable="selectable"></el-table-column>
<el-table-column label="最小销售产品标识" prop="nameCode" width="140" show-overflow-tooltip></el-table-column>
<!--<el-table-column label="主系统编码" prop="mainId" show-overflow-tooltip></el-table-column>-->
<el-table-column label="生产企业" prop="ylqxzcrbarmc" show-overflow-tooltip></el-table-column>
<el-table-column label="物资名称" prop="cpmctymc" show-overflow-tooltip></el-table-column>
<el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip></el-table-column>
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh" show-overflow-tooltip></el-table-column>
<el-table-column label="器械类别" prop="qxlb" show-overflow-tooltip></el-table-column>
<el-table-column label="生产企业" prop="ylqxzcrbarmc" show-overflow-tooltip></el-table-column>
</el-table>
<pagination
v-show="total>0"

@ -125,6 +125,7 @@
<el-table-column width="120" label="操作">
<template slot-scope="scope">
<el-button type="text" @click.native.stop="handleModifyClick(scope.row)">详情</el-button>
<el-button type="text" @click.native.stop="handleDeleteClick(scope.row.id)">移除</el-button>
</template>
</el-table-column>
</el-table>
@ -485,7 +486,33 @@ export default {
};
this.checked = row.isUseDy == 1;
},
handleDeleteClick(rowId){
this.$confirm("此操作将删除该供应商器械信息, 是否继续?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
let dQuery = {
id: rowId,
};
deleteCompanyProductRelevance(dQuery)
.then((response) => {
this.loading = false;
if (response.code == 20000) {
this.$message.success("删除成功");
} else {
this.$message.error(response.message);
}
this.getList();
})
.catch(() => {
this.loading = false;
});
})
.catch(() => {
});
},
lockProducts(status) {
let selectData = this.multipleSelection;
let postQuery = {

@ -118,6 +118,7 @@
placeholder="请选择单据类型"
:disabled="corpOrderIdDisabled"
style="width: 90%"
filterable
@change="actionChange"
>
<el-option
@ -605,6 +606,7 @@ export default {
action: null,
invCode: null,
fromCorp: null,
fromCorpName: null,
fromInvCode: null,
remark: null,
fromType: 2,
@ -834,7 +836,6 @@ export default {
page: 1,
limit: 20,
};
debugger
if (this.curAction.corpType == 3) {
//
cQuery.corpType = 3;
@ -1090,6 +1091,7 @@ export default {
);
tQuery.code = this.codeFormData.code;
tQuery.orderType = this.viewType;
debugger
this.addCodeSubmit(tQuery);
this.$refs.inputRef.select();
},
@ -1136,6 +1138,14 @@ export default {
this.refreshCodesPanel();
this.$message.error(response.message);
this.selectRlTitle = response.message;
//
if(tQuery.selectSupId!=null){
this.codeFormData.selectSupId=tQuery.selectSupId
}else{
this.codeFormData.selectSupId=false
}
//DI,
this.codeFormData.key ="key";
this.selectRlVisible = true;
} else if (response.code == 503) {
//

@ -141,6 +141,8 @@
<span>{{ scope.row.createTime }}</span>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<!-- <el-table-column label="校验状态" prop="status" width="100">-->
<!-- <template slot-scope="scope">-->
<!-- <el-tag :type="(scope.row.status ===-1 ) | statusFilterType">{{-->
@ -449,6 +451,7 @@ export default {
startTime: null,
endTime: null,
};
this.actDateRange = null
this.getList();
},
//

@ -344,7 +344,7 @@ export default {
checkFinish() {
let query = {
orderId: this.orderQuery.billNo,
billNo: this.formData.billNo,
};
getAcceptStatus(query)
.then((response) => {

@ -587,6 +587,7 @@ export default {
this.filterQuery.nameCode = this.curRow.nameCode;
this.filterQuery.bindRlIds = this.curRow.bindRlIds;
this.filterQuery.unitFk = this.fromCorp;
this.filterQuery.key = this.curRow.key;
getMutiUdiInfos(this.filterQuery)
.then((response) => {
this.loading = false;
@ -860,6 +861,13 @@ export default {
components: {}
,
created() {
if(this.curRow.selectSupId!=null){
if(this.curRow.selectSupId!=false){
this.fromCorp=this.curRow.selectSupId
}else{
this.fromCorp=''
}
}
this.getList();
}
,

@ -209,6 +209,7 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" show-overflow-tooltip width="180"></el-table-column>
<el-table-column label="操作" width="180" fixed="right">
<template slot-scope="scope">
<el-button type="text" :disabled="scope.row.checkStatus==1" size="small"
@ -798,41 +799,37 @@ export default {
showImgViewer(row) {
this.certFileUrl =
this.BASE_URL +
"/udiwms/image/register/file/getImage?type=image2&name="+row.licenseUrl;
"/udiwms/image/register/file/getImage?type=image2&name=" + row.licenseUrl;
this.imgList = [];
this.imgList.push(this.certFileUrl)
this.imgList.push(this.certFileUrl);
let index = row.licenseUrl.lastIndexOf('.');
if(index===-1){
this.$message.error("文件名异常!")
return false
if (index === -1) {
this.$message.error("文件名异常!");
return false;
}
if(row.licenseUrl.substr(index+1)==='pdf'){
let pdf = "application/pdf"
if (row.licenseUrl.substr(index + 1) === 'pdf') {
let pdf = "application/pdf";
let binaryData = [];
previewFile(this.certFileUrl).then(res=>{
previewFile(this.certFileUrl).then(res => {
binaryData.push(res);
let URL = window.URL.createObjectURL(new Blob(binaryData, {type: pdf}));
let URL = window.URL.createObjectURL(new Blob(binaryData, { type: pdf }));
window.open(URL);
})
// window.open(this.imgList[0])
return false
});
return false;
}
this.imgViewerVisible = true;
// previewImage({
// imageUrl: this.inputQuery.licenseUrl,
// certFileUrl: this.certFileUrl,
// }).then((response) => {
// if (response.code === 20000) {
// }
// console.log(this.imgList);
// });
const m = (e) => {
e.preventDefault();
};
document.body.style.overflow = "hidden";
document.addEventListener("touchmove", m, false); //
},
closeImgViewer() {
this.imgViewerVisible = false;
document.body.style.overflow = "auto"; //
document.removeEventListener("touchmove", m, false); //
},
invChange() {
@ -841,7 +838,7 @@ export default {
},
freshen() {
this.Upinvoice = false;
this.getBizDetailListInv();
// this.getBizDetailListInv();
},
printOrder(row) {
this.currentManufacturer = row;

@ -153,6 +153,8 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" width="200" fixed="right">
<template slot-scope="scope">
<el-button
@ -232,6 +234,11 @@
row-key="id"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="物资名称"
prop="coName" width="160"

@ -122,6 +122,8 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" width="150" fixed="right">
<template slot-scope="scope">
<el-button
@ -220,6 +222,11 @@
row-key="id"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="物资名称" width="150"
prop="coName"

@ -120,6 +120,8 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" width="150" fixed="right">
<template slot-scope="scope">
<el-button

@ -138,6 +138,8 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" width="220" fixed="right">
<template slot-scope="scope">
@ -225,6 +227,11 @@
row-key="id"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="物资名称"
prop="coName" width="160"
@ -361,6 +368,11 @@
row-key="id"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="物资名称" width="160"
prop="coName"

@ -141,6 +141,8 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" width="150">
<template slot-scope="scope">
<el-button
@ -203,6 +205,11 @@
row-key="id"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="物资名称"
prop="coName" width="160"
@ -291,6 +298,11 @@
row-key="id"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="物资名称" width="160"
prop="coName"

@ -120,6 +120,8 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" width="200" fixed="right">
<template slot-scope="scope">
<el-button
@ -199,6 +201,11 @@
row-key="id"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="物资名称"
prop="coName" width="160"

@ -150,6 +150,8 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" width="150" fixed="right">
<template slot-scope="scope">
<el-button

@ -135,6 +135,8 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" width="150" fixed="right">
<template slot-scope="scope">
<el-button

@ -170,6 +170,8 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" width="150" fixed="right">
<template slot-scope="scope">
<el-button

@ -139,6 +139,8 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" width="150" fixed="right">
<template slot-scope="scope">

@ -149,6 +149,8 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" width="150" fixed="right">
<template slot-scope="scope">
<el-button
@ -247,6 +249,11 @@
row-key="id"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="物资名称" width="150"
prop="coName"

@ -45,6 +45,8 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" fixed="right" width="150">
<template slot-scope="scope">
<el-button
@ -106,6 +108,11 @@
row-key="id"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="物资名称"
prop="coName" width="160"
@ -195,6 +202,11 @@
row-key="id"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="物资名称"
prop="coName"

@ -153,6 +153,7 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" show-overflow-tooltip width="180"></el-table-column>
<el-table-column label="操作" width="200" fixed="right">
<template slot-scope="scope">
<el-button type="text" size="small" @click.native.stop="printOrder(scope.row)">打印</el-button>
@ -203,6 +204,11 @@
row-key="id"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="物资名称"
prop="coName" width="160"

@ -149,6 +149,8 @@
</el-tag>
</template>
</el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" width="150" fixed="right">
<template slot-scope="scope">
<el-button
@ -247,6 +249,11 @@
row-key="id"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column
label="物资名称" width="150"
prop="coName"
@ -283,6 +290,7 @@
prop="certCode"
show-overflow-tooltip
></el-table-column>
</el-table>
</el-tab-pane>
</el-tabs>

@ -22,6 +22,11 @@
:row-style="rowStyle"
max-height="350" height="350" ref="multipleTable">
<el-table-column label="序号" type="index" width="50"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column width="150"
label="物资名称"
prop="coName"

@ -5,6 +5,11 @@
:row-style="rowStyle"
ref="multipleTable">
<el-table-column type="index" label="序号" width="50"></el-table-column>
<el-table-column
label="DI/物资编码" width="150"
prop="nameCode"
show-overflow-tooltip
></el-table-column>
<el-table-column label="物资名称" width="150" prop="coName" show-overflow-tooltip></el-table-column>
<el-table-column label="规格型号" width="150" prop="spec" show-overflow-tooltip></el-table-column>
<el-table-column label="批次号" width="150" prop="batchNo" show-overflow-tooltip></el-table-column>

@ -169,6 +169,7 @@ export default {
0: "草稿",
1: "未审核",
2: "已审核",
3: "已拒绝"
},
orderMutiVisible: false,
actDateRange: [],
@ -210,7 +211,9 @@ export default {
statusFilterType(status) {
const statusMap = {
0: "warning",
1: "success",
1: "primary",
2: "success",
3: "danger"
};
return statusMap[status];
},

@ -328,7 +328,7 @@ export default {
updateCountOrderStatus(params).then((res) => {
if (res.code === 20000) {
this.$message.success("审核通过");
this.$message.success("已驳回");
this.$message.warning("已驳回");
this.getList();
this.onRestDetail();
} else {

@ -137,10 +137,10 @@
<el-input :disabled="scope.$index !== currentIndex" v-model="scope.row.remark"></el-input>
</template>
</el-table-column>
<el-table-column label="生产日期(yyMMdd)" prop="productionDate"></el-table-column>
<el-table-column label="失效日期(yyMMdd)" prop="expireDate"
<el-table-column label="生产日期" prop="productionDate"></el-table-column>
<el-table-column label="失效日期" prop="expireDate"
show-overflow-tooltip></el-table-column>
<el-table-column label="注册/备案凭证号" prop="zczbhhzbapzbh"
<el-table-column width="150" label="注册/备案凭证号" prop="zczbhhzbapzbh"
show-overflow-tooltip></el-table-column>
<el-table-column label="生产企业" prop="ylqxzcrbarmc"
show-overflow-tooltip></el-table-column>
@ -158,7 +158,7 @@
type="text"
size="small"
@click.stop="true"
@click.native="updateOrderDetail(scope.row)"
@click.native="updateOrderDetail(scope.$index,scope.row)"
>保存
</el-button
>
@ -473,13 +473,14 @@ export default {
}
})
},
updateOrderDetail(row) {
updateOrderDetail(index,row) {
updateInvMAOrderDetail(row).then((res) => {
if (res.code === 20000) {
this.$message.success("保存成功!")
this.getList();
}
})
this.currentIndex = -1;
},
editOrderDetail(index, row) {
this.currentIndex = index;

@ -42,7 +42,7 @@
<el-table-column label="序号" type="index" width="50"></el-table-column>
<el-table-column label="码" prop="udiCode"></el-table-column>
<el-table-column label="状态" width="120">
<el-table-column label="状态" width="120" prop="status">
<template slot-scope="scope">
<span>{{ statusMap[scope.row.status] }}</span>
</template>

@ -115,6 +115,16 @@
<el-table-column label="注册/备案凭证" prop="zczbhhzbapzbh" show-overflow-tooltip></el-table-column>
<el-table-column label="器械类别" prop="qxlb" show-overflow-tooltip></el-table-column>
<el-table-column label="供应商" prop="companyName" show-overflow-tooltip></el-table-column>
<el-table-column
v-if="productRemarkSet.remarkEnable1"
:label="productRemarkSet.remarkTitle1" prop="basicPrductRemak1"
show-overflow-tooltip></el-table-column>
<el-table-column
v-if="productRemarkSet.remarkEnable2"
:label="productRemarkSet.remarkTitle2" prop="basicPrductRemak2"
show-overflow-tooltip></el-table-column>
<el-table-column label="操作" width="160">
<template slot-scope="scope">
<el-button type="text" size="small" @click.native.stop="handleDetailClick(scope.row)">详情</el-button>

@ -103,6 +103,8 @@
</el-table-column>
<el-table-column label="创建时间" prop="createTime"
sortable="custom" :sort-orders="['ascending', 'descending']"></el-table-column>
<el-table-column label="备注" prop="remark" width="180" show-overflow-tooltip>
</el-table-column>
<el-table-column label="操作" width="60px">
<template slot-scope="scope">
<el-button type="text" :disabled="scope.row.status!=2"

@ -362,6 +362,8 @@ export default {
listInv:this.invCodeList,
};
this.getList();
this.spaceList = [];
this.ggxhList = [];
},
search() {
this.filterQuery.page = 1;

@ -216,7 +216,6 @@ export default {
warehouseUserList(this.userQuery).then((res) => {
this.userData = res.data.list;
this.userTotal = res.data.total;
}).catch((error) => {
this.$message.error("数据正在处理,请勿重复提交")
});

@ -578,7 +578,7 @@ export default {
this.subData = {advanceType: data.advanceType.toString(), spUse: false, parentCode: data.code};
}
}
debugger
this.subFormVisible = true;
this.getSubThrsysDetailData();
if (this.subData.parentCode != null && this.subData.parentCode != "") {
@ -592,6 +592,7 @@ export default {
}
filterSubAll(this.query)
.then((response) => {
debugger
let invList = response.data || [];
//
if (invList.length > 0) {

@ -239,7 +239,14 @@ export default {
this.$message.error("请选择类型!");
return;
}
if (this.inputQuery.beforeTime < 0){
this.$message.error("生成出入库单时间间隔不能为负数!")
return;
}
if (this.inputQuery.busBeforeTime < 0){
this.$message.error("生成业务单时间间隔不能为负数!")
return;
}
if (this.formName === "add") {
let numRegExp = '^[0-9]*$';
let numReg = new RegExp(numRegExp);

@ -235,11 +235,11 @@ export default {
return;
}
if (this.inputQuery.beforeTime < 0){
this.$message.error("时间间隔不能为负数!")
this.$message.error("生成出入库单时间间隔不能为负数!")
return;
}
if (this.inputQuery.busBeforeTime < 0){
this.$message.error("时间间隔不能为负数!")
this.$message.error("生成业务单时间间隔不能为负数!")
return;
}
// if (isBlank(this.inputQuery.invCode)) {

@ -1,38 +1,42 @@
<template>
<div>
<el-card>
<el-form :inline="true" :model="query" size="mini">
<el-form-item label="用户账号:">
<el-input v-model="query.userName" placeholder="用户账号" clearable></el-input>
</el-form-item>
<el-form-item class="query-form-item" label="账号状态:">
<el-select v-model="query.userFlag" placeholder="请选择账号状态:">
<el-option label="全部" value=""></el-option>
<el-option label="禁用" value="0"></el-option>
<el-option label="正常" value="1"></el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-button-group>
<el-button
type="primary"
icon="el-icon-refresh"
@click="onReset"
>重置
</el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
>查询
</el-button
>
<el-button type="primary" @click.native="handleForm(null, null)" icon="el-icon-plus"
:disabled="!configParms.sysUser && query.customerId == 110"
v-hasPermi="['system:user:add']"
>新增
</el-button
>
</el-button-group>
</el-form-item>
<el-form :inline="true" :model="query" size="mini" v-show="showSearch">
<el-row>
<el-col :span="8">
<el-form-item label="用户账号:">
<el-input v-model="query.userName" placeholder="用户账号" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item class="query-form-item" label="账号状态:">
<el-select v-model="query.userFlag" placeholder="请选择账号状态:">
<el-option label="全部" value=""></el-option>
<el-option label="禁用" value="0"></el-option>
<el-option label="正常" value="1"></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="所属部门:">
<el-input v-model="query.deptName" placeholder="所属部门" clearable></el-input>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn">
<el-button-group>
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"></el-button>
<el-button type="primary" @click.native="handleForm(null, null)" icon="el-icon-plus"
:disabled="!configParms.sysUser && query.customerId == 110"
v-hasPermi="['system:user:add']">新增</el-button>
</el-button-group>
</div>
<el-divider style="margin: 15px"></el-divider>
<el-table v-loading="loading" :data="list"
style="width: 100%"
border highlight-current-row>
@ -292,10 +296,12 @@ export default {
}
};
return {
showSearch: true,
roles: [],
query: {
userName: "",
userFlag: "1",
deptName: "",
page: 1,
limit: 10,
roleId: "",
@ -363,6 +369,12 @@ export default {
};
},
methods: {
getDeptList(){
},
hideSearch() {
this.showSearch = !this.showSearch;
},
onReset() {
this.$router.push({
path: ""
@ -370,6 +382,7 @@ export default {
this.query = {
userName: "",
userFlag: "1",
deptName: null,
page: 1,
limit: 10,
roleId: "",

@ -71,7 +71,7 @@
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click.native="editGeOrderParamVisible = !editGeOrderParamVisible"
<el-button @click.native="closeDialog( editGeOrderParamVisible = !editGeOrderParamVisible)"
>取消
</el-button
>

@ -564,7 +564,7 @@ export default {
this.subData.code = JSON.parse(localStorage.getItem("code"));
this.subFormVisible = false;
});
this.resetForm();
// this.resetForm();
},

@ -34,8 +34,8 @@
<el-tag :type="statusFilterType(scope.row.status)">{{ status[scope.row.status] }}</el-tag>
</template>
</el-table-column>
<el-table-column label="下载次数" prop="dlCount" show-overflow-tooltip>
</el-table-column>
<el-table-column label="下载次数" prop="dlCount" show-overflow-tooltip></el-table-column>
<el-table-column label="下载信息" prop="remark" show-overflow-tooltip></el-table-column>
<el-table-column label="操作" width="120">
<template slot-scope="scope">
<el-button type="text" @click.native.stop="downloadExcel(scope.row)">下载

@ -113,7 +113,7 @@ import {getInvbasdoc} from "@/api/thrsys/getErps";
import {getBasicThirdSys, filterDetailByKey} from "@/api/thrsys/basicThirdSys";
import {selectIp} from "@/api/system/systemParamConfig";
import thrProductsDetail from "./thrProductsDetail";
import {exportExcel} from "@/api/thrsys/thrProductsExport"
import {exportExcel,exportExcelAll} from "@/api/thrsys/thrProductsExport"
import {thrProductUpload} from "@/api/thrsys/smp"
export default {
@ -155,6 +155,7 @@ export default {
},
thrProductsDetailVisible: false,
thisData: null,
multipleSelection: []
};
},
@ -395,11 +396,32 @@ export default {
selectData.forEach((obj) => {
this.filterQuery.thrProductsEntities.push(obj);
});
this.allExport();
exportExcel(this.filterQuery)
.then((response) => {
if (response.code == 20000) {
this.$message({
type: "success",
message: "导出成功后台正在生成Json文件请稍后刷新查看",
});
this.$emit("cancelDialog", true);
} else {
this.$message({
type: "error",
message: response.message,
});
this.$emit("cancelDialog", true);
}
})
.catch(() => {
this.$message({
type: "error",
message: "上传失败",
});
});
},
allExport() {
this.filterQuery.thrProductsEntities=this.list;
exportExcel(this.filterQuery)
exportExcelAll(this.filterQuery)
.then((response) => {
if (response.code == 20000) {
this.$message({

Loading…
Cancel
Save