|
|
|
@ -29,7 +29,7 @@
|
|
|
|
|
border
|
|
|
|
|
highlight-current-row
|
|
|
|
|
@current-change="handSubInvCurrentChange"
|
|
|
|
|
style="width: 100%;">
|
|
|
|
|
>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="name"
|
|
|
|
@ -46,6 +46,11 @@
|
|
|
|
|
label="所属部门"
|
|
|
|
|
>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
prop="parentInvName"
|
|
|
|
|
label="上级仓库"
|
|
|
|
|
>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="操作">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
@ -67,6 +72,128 @@
|
|
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="total>0"
|
|
|
|
|
:total="total"
|
|
|
|
|
:page.sync="query.page"
|
|
|
|
|
:limit.sync="query.limit"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
|
|
|
|
<!--仓库编辑界面-->
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="formMap[formName]"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
:visible.sync="subFormVisible"
|
|
|
|
|
:before-close="hideForm"
|
|
|
|
|
width="60%"
|
|
|
|
|
top="5vh"
|
|
|
|
|
>
|
|
|
|
|
<el-form :model="subData" ref="dataForm" :rules="formRules" label-width="80px">
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="所属部门" prop="parentId">
|
|
|
|
|
<el-select v-model="subData.parentId" placeholder="顶级" style="width: 80%">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in fromDeptOptions"
|
|
|
|
|
:key="item.code"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left"
|
|
|
|
|
><span v-html="item.html"></span>{{ item.name }}</span
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="上级仓库" prop="parentCode">
|
|
|
|
|
<treeselect v-model="subData.parentCode" :options="invOptions" :normalizer="normalizer"
|
|
|
|
|
style="width: 80%"
|
|
|
|
|
placeholder="选择上级仓库"/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="仓库编码" prop="code" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
disabled
|
|
|
|
|
v-model="subData.code" style="width: 80%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="仓库名称" prop="name" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="subData.name" style="width: 80%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row class="el-row" type="flex">
|
|
|
|
|
<el-col class="el-col">
|
|
|
|
|
<el-form-item label="备注" prop="name" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="subData.remark"
|
|
|
|
|
type="textarea"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-table :data="sysSubList" style="width: 100%; margin-bottom: 30px;" border>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="外部系统名称"
|
|
|
|
|
prop="sysName"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="外部仓库编码"
|
|
|
|
|
prop="thirdId"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="外部仓库名称"
|
|
|
|
|
prop="thirdName"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column label="操作">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
:disabled="!configParms.basicInv"
|
|
|
|
|
@click="intentSubSelect(scope.row)"
|
|
|
|
|
>关联
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="unbindSubThrWarehouse(scope.row)"
|
|
|
|
|
:disabled="scope.row.thirdId=='' ||scope.row.thirdId==null ||!configParms.basicInv"
|
|
|
|
|
>解绑
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button @click.native="hideForm">取消</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
@click.native="forInvSubmit()"
|
|
|
|
|
>提交
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</el-card>
|
|
|
|
|
<el-tabs type="border-card" style="margin: 15px">
|
|
|
|
|
<el-tab-pane>
|
|
|
|
@ -93,7 +220,7 @@
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" @click="addUser()"
|
|
|
|
|
icon="el-icon-plus"
|
|
|
|
|
icon="el-icon-document-add"
|
|
|
|
|
>选入用户
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
@ -131,12 +258,12 @@
|
|
|
|
|
移除
|
|
|
|
|
</el-button>
|
|
|
|
|
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small" :disabled="!configParms.basicInv"
|
|
|
|
|
@click.native="rmInvUser(scope.row)">
|
|
|
|
|
授权
|
|
|
|
|
</el-button>
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="text"-->
|
|
|
|
|
<!-- size="small" :disabled="!configParms.basicInv"-->
|
|
|
|
|
<!-- @click.native="rmInvUser(scope.row)">-->
|
|
|
|
|
<!-- 授权-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small" :disabled="!configParms.basicInv"
|
|
|
|
@ -149,7 +276,6 @@
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
<el-tab-pane>
|
|
|
|
|
<span slot="label">{{ currentRow.name }}-单据类型</span>
|
|
|
|
|
|
|
|
|
|
<el-form :inline="true" :model="userQuery" class="query-form" size="mini">
|
|
|
|
|
<el-form-item class="query-form-item" label="单据类型名称:">
|
|
|
|
|
<el-input
|
|
|
|
@ -171,8 +297,8 @@
|
|
|
|
|
>查询
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="primary" @click="addUser()"
|
|
|
|
|
icon="el-icon-plus"
|
|
|
|
|
<el-button type="primary" @click="addBussinessType()"
|
|
|
|
|
icon="el-icon-document-add"
|
|
|
|
|
>选入单据类型
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
@ -180,7 +306,7 @@
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="userBussinessTypeList" ref="typeList"
|
|
|
|
|
<el-table :data="userBussinessTypeList" ref="typeList"
|
|
|
|
|
border
|
|
|
|
|
style="width: 100%">
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
@ -209,7 +335,7 @@
|
|
|
|
|
<!--添加用户弹窗-->
|
|
|
|
|
<el-dialog
|
|
|
|
|
v-if="userFormVisible"
|
|
|
|
|
title="仓库信息-添加用户"
|
|
|
|
|
title="仓库信息-选入用户"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
:visible.sync="userFormVisible"
|
|
|
|
@ -247,62 +373,32 @@
|
|
|
|
|
@pagination="getSelectUser"
|
|
|
|
|
/>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
<!--添加单据类型弹窗-->
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="仓库关联单据类型"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
:visible.sync="userBussinessTypeFormVisible"
|
|
|
|
|
>
|
|
|
|
|
<el-row type="flex" justify="end">
|
|
|
|
|
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
@click.native="addBussinessType()"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
>选入
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button @click.native="userBussinessTypeFormVisible = !userBussinessTypeFormVisible"
|
|
|
|
|
>取消
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<!--选入单据类型弹窗-->
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="单据类型"
|
|
|
|
|
title="仓库信息-选入单据类型"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
:visible.sync="bussinessTypeFormVisible"
|
|
|
|
|
>
|
|
|
|
|
<el-table v-loading="loading" :data="bussinessTypeList" ref="typeList"
|
|
|
|
|
@selection-change="handleBussinessTypeSelectionChange"
|
|
|
|
|
border
|
|
|
|
|
style="width: 100%">
|
|
|
|
|
<el-table-column
|
|
|
|
|
type="selection"
|
|
|
|
|
:reserve-selection="true"
|
|
|
|
|
width="55">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="单据类型编码" prop="action" fixed></el-table-column>
|
|
|
|
|
<el-table-column label="单据类型名称" prop="name" fixed></el-table-column>
|
|
|
|
|
<el-table-column label="单据类型编码" prop="action"></el-table-column>
|
|
|
|
|
<el-table-column label="单据类型名称" prop="name"></el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<el-pagination
|
|
|
|
|
:page-size="bussinessTypeQuery.limit"
|
|
|
|
|
@current-change="getBussinessType"
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
<pagination
|
|
|
|
|
v-show="bussinessTypeTotal>0"
|
|
|
|
|
:total="bussinessTypeTotal"
|
|
|
|
|
:current-page="bussinessTypeQuery.page"
|
|
|
|
|
>
|
|
|
|
|
</el-pagination>
|
|
|
|
|
|
|
|
|
|
:page.sync="bussinessTypeQuery.page"
|
|
|
|
|
:limit.sync="bussinessTypeQuery.limit"
|
|
|
|
|
@pagination="getSelectUser"
|
|
|
|
|
/>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button @click.native="bussinessTypeFormVisible = !bussinessTypeFormVisible"
|
|
|
|
|
>取消
|
|
|
|
@ -329,99 +425,6 @@
|
|
|
|
|
<relBusUserDialog :inputQuery="curSeleUser" :closeDialog="cancelRelBusDiaolog"></relBusUserDialog>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
<!--编辑表单界面-->
|
|
|
|
|
<el-dialog
|
|
|
|
|
:title="formMap[formName]"
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
:visible.sync="subFormVisible"
|
|
|
|
|
:before-close="hideForm"
|
|
|
|
|
width="60%"
|
|
|
|
|
top="5vh"
|
|
|
|
|
>
|
|
|
|
|
<el-form :model="subData" ref="dataForm">
|
|
|
|
|
<el-form-item label="所属仓库" prop="pid">
|
|
|
|
|
<el-select v-model="subData.parentId" placeholder="顶级" disabled>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in mergeList"
|
|
|
|
|
:key="item.code"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left"
|
|
|
|
|
><span v-html="item.html"></span>{{ item.name }}</span
|
|
|
|
|
>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="20" class="el-row" type="flex">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="分库编码" prop="title" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
disabled
|
|
|
|
|
v-model="subData.code" style="width: 80%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="分库名称" prop="name" class="query-form-item">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="subData.name" style="width: 80%"
|
|
|
|
|
auto-complete="off"
|
|
|
|
|
></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<el-table :data="sysSubList" style="width: 100%; margin-bottom: 30px;" border>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="第三方系统名称"
|
|
|
|
|
prop="sysName"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="第三方仓库ID"
|
|
|
|
|
prop="thirdId"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="第三方仓库名称"
|
|
|
|
|
prop="thirdName"
|
|
|
|
|
show-overflow-tooltip
|
|
|
|
|
></el-table-column>
|
|
|
|
|
<el-table-column label="操作" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
|
size="small"
|
|
|
|
|
:disabled="!configParms.basicInv"
|
|
|
|
|
@click="intentSubSelect(scope.row)"
|
|
|
|
|
>关联
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="unbindSubThrWarehouse(scope.row)"
|
|
|
|
|
:disabled="scope.row.thirdId=='' ||scope.row.thirdId==null ||!configParms.basicInv"
|
|
|
|
|
>解绑
|
|
|
|
|
</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button @click.native="hideForm">取消</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
@click.native="forSubSubmit()"
|
|
|
|
|
:loading="formLoading"
|
|
|
|
|
>提交
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--货位管理-->
|
|
|
|
|
<el-dialog
|
|
|
|
|
title="货位管理"
|
|
|
|
@ -442,69 +445,81 @@ import {
|
|
|
|
|
filterSubAll, saveSubWarehouse, deleteSubWarehouse,
|
|
|
|
|
getSubThrsysDetail, bindThrSubWarehouse, unbindSubThrWarehouse
|
|
|
|
|
} from "@/api/system/invSubWarehouse";
|
|
|
|
|
import {filterThrList} from "@/api/thrsys/thrInvWarehouse";
|
|
|
|
|
import {getHospitalUserList, selectNotSelectUser} from "@/api/auth/authUser";
|
|
|
|
|
import {getJoinBussinessType} from "@/api/basic/bussinessType";
|
|
|
|
|
import {formatDate} from "@/utils/date";
|
|
|
|
|
import axios from "axios";
|
|
|
|
|
import store from "@/store";
|
|
|
|
|
import {findConfig} from "@/api/thrsys/spsSyncStatus";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import relBusUserDialog from "./invWarehouseRelBusTypes";
|
|
|
|
|
import {selectSysParamByKey} from "@/api/system/param/systemParamConfig";
|
|
|
|
|
import {filterUserBusTypeList} from "@/api/basic/invRelBusTypes";
|
|
|
|
|
import invSpaceManage from "@/views/inventory/InvSpaceManage";
|
|
|
|
|
import {
|
|
|
|
|
addWarehouseUser, deleteWarehouseBussinessType,
|
|
|
|
|
saveWarehouseUser,
|
|
|
|
|
addWarehouseUser, deleteWarehouseBussinessType, deleteWarehouseUser, filterList,
|
|
|
|
|
warehouseBussinessTypeList,
|
|
|
|
|
warehouseUserList
|
|
|
|
|
} from "@/api/system/invWarehouse";
|
|
|
|
|
import {superSearch} from "@/api/biz/udiInfo";
|
|
|
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
//---------------仓库相关-------------------
|
|
|
|
|
query: {
|
|
|
|
|
id: null,
|
|
|
|
|
pid: null,
|
|
|
|
|
name: null,
|
|
|
|
|
code: null,
|
|
|
|
|
status: "1",
|
|
|
|
|
advanceType: null,
|
|
|
|
|
isDefault: null
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
},
|
|
|
|
|
loading: true,
|
|
|
|
|
list: [],
|
|
|
|
|
total: 0,
|
|
|
|
|
formMap: {
|
|
|
|
|
add: "仓库信息-新增",
|
|
|
|
|
edit: "仓库信息-编辑"
|
|
|
|
|
},
|
|
|
|
|
formName: null,
|
|
|
|
|
configParms: {},
|
|
|
|
|
currentCode: null,
|
|
|
|
|
currentRow: {name: "仓库"},
|
|
|
|
|
mutiInvMode: true,
|
|
|
|
|
subFormVisible: false,
|
|
|
|
|
formRules: {
|
|
|
|
|
parentId: [
|
|
|
|
|
{required: true, message: "请选择所属部门", trigger: "blur"}
|
|
|
|
|
],
|
|
|
|
|
name: [
|
|
|
|
|
{required: true, message: "请选择仓库名称", trigger: "blur"}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
subData: {},
|
|
|
|
|
fromDeptOptions: [],
|
|
|
|
|
invOptions: [],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---------------仓库-用户相关---------------------
|
|
|
|
|
userQuery: {
|
|
|
|
|
code: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10
|
|
|
|
|
},
|
|
|
|
|
loading: true,
|
|
|
|
|
list: [],
|
|
|
|
|
userData: [],
|
|
|
|
|
userTotal: 0,
|
|
|
|
|
selectUserList: [],
|
|
|
|
|
selectUserToatl: 0,
|
|
|
|
|
selectAddUser: [],
|
|
|
|
|
configParms: {},
|
|
|
|
|
mutiInvMode: true,
|
|
|
|
|
subRadioCheck: null,
|
|
|
|
|
currentCode: null,
|
|
|
|
|
currentRow: {name: "仓库"},
|
|
|
|
|
curSeleUser: null,
|
|
|
|
|
//---------------仓库添加用户-----
|
|
|
|
|
selectUserQuery: {
|
|
|
|
|
code: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10
|
|
|
|
|
},
|
|
|
|
|
userloading: false,
|
|
|
|
|
userFormVisible: false,
|
|
|
|
|
subData: {},
|
|
|
|
|
|
|
|
|
|
userloading: false,
|
|
|
|
|
selectUserList: [],
|
|
|
|
|
selectUserToatl: 0,
|
|
|
|
|
selectAddUser: [],
|
|
|
|
|
//------用户-单据相关-----------------------
|
|
|
|
|
curSeleUser: null,
|
|
|
|
|
relBusUserVisile: false,
|
|
|
|
|
|
|
|
|
|
userBussinessTypeList: [],
|
|
|
|
|
userBussinessTypeFormVisible: false,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bussinessTypeQuery: {
|
|
|
|
|
enabled: true,
|
|
|
|
@ -518,14 +533,6 @@ export default {
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10
|
|
|
|
|
},
|
|
|
|
|
formName: null,
|
|
|
|
|
formMap: {
|
|
|
|
|
addTop: "添加分库",
|
|
|
|
|
add: "添加货位",
|
|
|
|
|
edit: "编辑"
|
|
|
|
|
},
|
|
|
|
|
subFormVisible: false,
|
|
|
|
|
|
|
|
|
|
selectBussinessTypeList: [],
|
|
|
|
|
bussinessTypeFormVisible: false,
|
|
|
|
|
|
|
|
|
@ -540,7 +547,9 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
onReset() {
|
|
|
|
|
|
|
|
|
|
//----------------仓库相关-----------------
|
|
|
|
|
onReset() { //重置
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: "",
|
|
|
|
|
});
|
|
|
|
@ -552,25 +561,90 @@ export default {
|
|
|
|
|
this.busQuery.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
//提交查询
|
|
|
|
|
onSubmit() {
|
|
|
|
|
|
|
|
|
|
onSubmit() { //提交查询
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
//获取仓库信息
|
|
|
|
|
getList() {
|
|
|
|
|
getList() { //获取仓库信息
|
|
|
|
|
this.loading = true;
|
|
|
|
|
filterSubAll(this.query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = response.data || [];
|
|
|
|
|
this.total = response.data.total;
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.total = 0;
|
|
|
|
|
this.list = [];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//获取配置信息
|
|
|
|
|
getSyncConfig() {
|
|
|
|
|
handleSubForm(data, formName) { //新增,编辑
|
|
|
|
|
|
|
|
|
|
this.formName = formName;
|
|
|
|
|
if (formName === "edit") {
|
|
|
|
|
this.subData = JSON.parse(JSON.stringify(data));
|
|
|
|
|
} else if (formName === "add") {
|
|
|
|
|
this.subData = {};
|
|
|
|
|
}
|
|
|
|
|
this.subFormVisible = true;
|
|
|
|
|
this.getSubThrsysDetailData();
|
|
|
|
|
filterSubAll(this.query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
let invList = response.data.list || [];
|
|
|
|
|
this.invOptions = this.handleTree(invList, "code", "parentCode");
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
hideForm() { // 新增,编辑---取消
|
|
|
|
|
this.formVisible = false;
|
|
|
|
|
this.subFormVisible = false;
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
forInvSubmit() { // 新增,编辑---提交
|
|
|
|
|
this.$refs["dataForm"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
saveSubWarehouse(this.subData, this.formName).then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.loadSubData(this.subData.parentId);
|
|
|
|
|
this.subFormVisible = false;
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
this.subFormVisible = false;
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
this.subFormVisible = false;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
findDeptMethod() { //新增,编辑---获取部门信息
|
|
|
|
|
let query = {
|
|
|
|
|
status: 1,
|
|
|
|
|
};
|
|
|
|
|
filterList(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.fromDeptOptions = response.data.list || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.fromDeptOptions = [];
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
normalizer(node) {
|
|
|
|
|
if (node.children && !node.children.length) {
|
|
|
|
|
delete node.children;
|
|
|
|
|
}
|
|
|
|
|
return {
|
|
|
|
|
id: node.code,
|
|
|
|
|
label: node.name,
|
|
|
|
|
children: node.children
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
getSyncConfig() {//获取配置信息
|
|
|
|
|
findConfig()
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
@ -579,8 +653,6 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let query = {
|
|
|
|
|
paramKey: "muti_inv_mode",
|
|
|
|
|
};
|
|
|
|
@ -594,33 +666,21 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
handSubInvCurrentChange(row) {
|
|
|
|
|
handSubInvCurrentChange(row) { //列表选中
|
|
|
|
|
this.currentCode = row.code;
|
|
|
|
|
this.currentRow = row;
|
|
|
|
|
this.curSeleUser = null;
|
|
|
|
|
|
|
|
|
|
//加载用户信息
|
|
|
|
|
this.loadLinkData(row)
|
|
|
|
|
|
|
|
|
|
//加载单据类型
|
|
|
|
|
this.selsectBussinessType(row);
|
|
|
|
|
|
|
|
|
|
//加载货位信息
|
|
|
|
|
this.invSpaceManage(row);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
loadLinkData(row) {
|
|
|
|
|
this.userQuery.page = 1;
|
|
|
|
|
this.userQuery.code = row.code;
|
|
|
|
|
this.curSeleUser = null;
|
|
|
|
|
//加载用户数据
|
|
|
|
|
this.loadUserList();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
loadUserList(val) {
|
|
|
|
|
//------仓库-用户相关------------------
|
|
|
|
|
loadUserList(val) { //获取仓库用户列表
|
|
|
|
|
if (val != null) {
|
|
|
|
|
this.userQuery.page = val;
|
|
|
|
|
}
|
|
|
|
@ -632,6 +692,38 @@ export default {
|
|
|
|
|
this.$message.error("用户数据加载失败")
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
rmInvUser(row) { //移除仓库关联用户
|
|
|
|
|
this.$confirm("确定移除该仓库关联用户?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
let params = {id: row.id};
|
|
|
|
|
deleteWarehouseUser(params).then((res) => {
|
|
|
|
|
if (res.code == 20000) {
|
|
|
|
|
this.loadUserList();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(res.message);
|
|
|
|
|
}
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
loadLinkData(row) {
|
|
|
|
|
this.userQuery.page = 1;
|
|
|
|
|
this.userQuery.code = row.code;
|
|
|
|
|
this.curSeleUser = null;
|
|
|
|
|
//加载用户数据
|
|
|
|
|
this.loadUserList();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//添加仓库关联用户
|
|
|
|
|
addUser() {
|
|
|
|
@ -686,20 +778,6 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//移除仓库关联用户
|
|
|
|
|
rmInvUser() {
|
|
|
|
|
this.$confirm("确定移除该关联用户信息?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
relBusttype(row) {
|
|
|
|
|
this.curSeleUser = row;
|
|
|
|
|
this.relBusUserVisile = true;
|
|
|
|
@ -796,17 +874,6 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
handleSubForm(data, formName) {
|
|
|
|
|
this.subFromName = formName;
|
|
|
|
|
if (formName === "edit") {
|
|
|
|
|
this.subData = JSON.parse(JSON.stringify(data));
|
|
|
|
|
} else if (formName === "add") {
|
|
|
|
|
this.subData = {};
|
|
|
|
|
// this.subData.parentId = data.code;
|
|
|
|
|
}
|
|
|
|
|
this.subFormVisible = true;
|
|
|
|
|
this.getSubThrsysDetailData();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getSubThrsysDetailData() {
|
|
|
|
|
let params = {
|
|
|
|
@ -823,29 +890,34 @@ export default {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// 隐藏表单
|
|
|
|
|
hideForm() {
|
|
|
|
|
// 更改值
|
|
|
|
|
this.formVisible = false;
|
|
|
|
|
this.subFormVisible = false;
|
|
|
|
|
// this.loadSubData(this.currentCode);
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
relBusUserDialog,
|
|
|
|
|
invSpaceManage
|
|
|
|
|
invSpaceManage, Treeselect
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getSyncConfig();
|
|
|
|
|
this.findDeptMethod();
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style type="text/scss" lang="scss">
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
.vue-treeselect >>> .vue-treeselect__placeholder {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.vue-treeselect >>> .vue-treeselect__value-container {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.vue-treeselect >>> .vue-treeselect__control {
|
|
|
|
|
height: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|