123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843 |
- <template>
- <div id="PurchaseDemandList">
- <div v-if="isList">
- <el-card style="position: relative;">
- <el-form class="search_area" label-width="100px">
- <el-row :gutter="10">
- <el-col :span="1.5">
- <el-form-item label="需求单号">
- <el-input
- v-model.trim="queryParams.code"
- size="mini"
- clearable
- style="width: 200px"
- />
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="需求客户">
- <el-select clearable size="mini" v-model="queryParams.customer" @focus="chooseOrg('CUSTOMER_PARAM', true, '需求客户')" style="width: 200px">
- <el-option v-for="item in customerOptions" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="是否客户指定">
- <el-select clearable v-model="queryParams.isCustomerSpecified" size="mini" style="width: 200px" placeholder="请选择">
- <el-option
- v-for="item in options"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="需求人员">
- <el-select clearable size="mini" v-model="queryParams.demandPersonal" @focus="chooseOrg('CONTACTS_PARAM', true, '需求人员')" style="width: 200px">
- <el-option v-for="item in personOptions" :key="item.id" :label="item.name" :value="item.code" />
- </el-select>
- </el-form-item>
- </el-col>
- <!-- <el-col :span="1.5"> -->
- <!-- <el-form-item label="" label-width="20px"> -->
- <div style="position: absolute;top: 3px;right: 10px;">
- <el-button type="primary" size="mini" @click="searchList">搜索</el-button>
- <el-button size="mini" plain @click="resetList">重置</el-button>
- </div>
- <!-- </el-form-item> -->
- <!-- </el-col> -->
- </el-row>
- <CollapseTransition>
- <div v-show="expanded">
- <el-row :gutter="10">
- <el-col :span="1.5">
- <el-form-item label="单据来源">
- <el-select clearable v-model="queryParams.source" size="mini" style="width: 200px">
- <el-option v-for="dict in dict.type.sys_bill_source" :key="dict.value" :label="dict.label" :value="dict.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="业务类型">
- <el-select clearable v-model="queryParams.billType" size="mini" style="width: 200px">
- <el-option v-for=" dict in dict.type.sys_business" :key="dict.value" :label="dict.label" :value="dict.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="需求部门">
- <el-select clearable v-model="queryParams.demandDept" size="mini" @focus="chooseOrg('DEPT_PARAM', true, '需求部门')" style="width: 200px">
- <el-option
- v-for="item in deptOptions"
- :key="item.id"
- :label="item.name"
- :value="item.id">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="需求日期">
- <el-date-picker
- v-model="queryParams.demandDate"
- type="date"
- clearable
- value-format="yyyy-MM-dd"
- size="mini"
- style="width: 200px"
- >
- </el-date-picker>
- </el-form-item>
- </el-col>
- </el-row>
-
- <el-row :gutter="10">
- <el-col :span="1.5">
- <el-form-item label="物料编码">
- <el-input
- v-model.trim="queryParams.materialCode"
- size="mini"
- clearable
- style="width: 200px"
- />
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="单据状态">
- <el-select clearable v-model="queryParams.status" size="mini" style="width: 200px">
- <el-option v-for=" dict in dict.type.sys_status" :key="dict.value" :label="dict.label" :value="dict.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="需求计划">
- <el-select clearable v-model="queryParams.planType" size="mini" style="width: 200px">
- <el-option v-for="dict in dict.type.sys_plan_type" :key="dict.value" :label="dict.label" :value="dict.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="备注">
- <el-input
- v-model.trim="queryParams.remark"
- size="mini"
- clearable
- style="width: 200px"
- />
- </el-form-item>
- </el-col>
- </el-row>
- </div>
- </CollapseTransition>
- </el-form>
- <el-divider class="lines"><i style="cursor: pointer;" :class="expanded?'el-icon-arrow-up':'el-icon-arrow-down'" @click="drop"></i></el-divider>
-
- <div class="btn_grooup">
- <el-button type="primary" size="mini" @click="addDivision">新增</el-button>
- <el-dropdown size="mini" @command="handleCommand">
- <el-button size="mini" type="primary" style="margin-left: 10px;">
- 导入<i class="el-icon-arrow-down el-icon--right"></i>
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="数据导入">数据导入</el-dropdown-item>
- <el-dropdown-item command="模板下载">模板下载</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- <el-dropdown size="mini" @command="handleExport">
- <el-button size="mini" type="primary" style="margin: 0 10px;">
- 导出<i class="el-icon-arrow-down el-icon--right"></i>
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="选中导出">选中导出</el-dropdown-item>
- <el-dropdown-item command="全部导出">全部导出</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- <el-button type="primary" size="mini" @click="delItems">删除</el-button>
- <!-- <el-button type="primary" size="mini">打印</el-button> -->
- </div>
-
- <el-table
- v-loading="loading"
- :data="tableList"
- fit
- :cell-style="{ borderColor: '#c0c0c0' }"
- :header-cell-style="{ borderColor: '#c0c0c0' }"
- class="exporttable"
- max-height="410"
- border
- highlight-current-row
- style="font-size: 12px;"
- @selection-change="handleSelectionChange"
- @row-click="rowSelect"
- @row-dblclick="doubleClick"
- ref="tables"
- >
- <el-table-column show-overflow-tooltip type="selection" width="55" fixed="left"/>
- <el-table-column show-overflow-tooltip label="序号" type="index" align="center" width="50px" fixed="left"/>
- <el-table-column show-overflow-tooltip label="需求单号" align="center" width="170" prop="code"/>
- <el-table-column show-overflow-tooltip label="需求日期" align="center" width="120" prop="demandDate"/>
- <el-table-column show-overflow-tooltip label="需求计划" align="center" width="120" prop="planType" :formatter="formatterPlanType"/>
- <el-table-column show-overflow-tooltip label="审批结束日期" align="center" width="120" prop="approverFinishTime"/>
- <el-table-column show-overflow-tooltip label="单据状态" align="center" prop="satus" :formatter="formatterStatus"/>
- <el-table-column show-overflow-tooltip label="业务类型" align="center" width="120" prop="billType" :formatter="formatterBillType"/>
- <!-- <el-table-column show-overflow-tooltip label="是否特殊需求" align="center" width="150" prop="isSpeical" /> -->
- <el-table-column show-overflow-tooltip label="需求人员" align="center" prop="demandPersonalName" />
- <el-table-column show-overflow-tooltip label="需求客户" align="center" prop="customerName" width="150"/>
- <el-table-column show-overflow-tooltip label="需求部门" align="center" prop="demandDeptName" width="150"/>
- <!-- <el-table-column show-overflow-tooltip label="供应仓库" align="center" width="120" prop="warehouseName" /> -->
- <!-- <el-table-column show-overflow-tooltip label="供应货位" align="center" width="150" prop="goodsAllocationName" /> -->
- <el-table-column show-overflow-tooltip label="单据来源" align="center" prop="source" width="120" :formatter="formatterSource"/>
- <el-table-column show-overflow-tooltip label="备注" align="center" width="150" prop="remark" />
- <el-table-column
- fixed="right"
- label="操作"
- align="center"
- width="180"
- >
- <template slot-scope="scope">
- <el-button type="text" size="mini" @click="check(scope.row)">查看</el-button>
- <el-button type="text" size="mini" v-if="scope.row.status == '0' || scope.row.status == '3' || scope.row.status == '9'" @click="edit(scope.row)">编辑</el-button>
- <el-button type="text" size="mini" v-if="scope.row.status == '0' || scope.row.status == '3' || scope.row.status == '9'" @click="commit(scope.row)">提交</el-button>
- <el-button type="text" size="mini" v-if="scope.row.status == '1' && scope.row.flowId" @click="reback(scope.row)">收回</el-button>
- <el-button type="text" size="mini" v-if="scope.row.status == '0' || scope.row.status == '3' || scope.row.status == '9'" @click="deleteids(scope.row)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <el-pagination
- background
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- :current-page="queryParams.pageNum"
- :page-sizes="[10, 20, 50, 100, 200, 500]"
- :page-size="50"
- layout="total, sizes, prev, pager, next, jumper"
- :total=total>
- </el-pagination>
- </el-card>
- </div>
- <!-- 用户导入对话框 -->
- <el-dialog title="数据导入" :visible.sync="upload.open" width="400px">
- <el-upload
- ref="upload"
- :limit="1"
- accept=".xlsx, .xls"
- :headers="upload.headers"
- :action="upload.url + '?updateSupport=' + upload.updateSupport"
- :disabled="upload.isUploading"
- :on-progress="handleFileUploadProgress"
- :on-success="handleFileSuccess"
- :on-error="errorFile"
- :auto-upload="false"
- drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">
- 将文件拖到此处,或
- <em>点击上传</em>
- </div>
- <!-- <div class="el-upload__tip" slot="tip">
- <el-checkbox v-model="upload.updateSupport" />是否更新已经存在的用户数据
- </div> -->
- <div class="el-upload__tip" style="color:red" slot="tip">提示:仅允许导入“xls”或“xlsx”格式文件!</div>
- </el-upload>
- <div slot="footer">
- <el-button size="mini" type="primary" @click="submitFileForm">确 定</el-button>
- <el-button size="mini" @click="upload.open = false">取 消</el-button>
- </div>
- </el-dialog>
- <!-- 模板下载新增参数 -->
- <el-dialog title="需求模板下载" :visible.sync="download.open" @close="clearDownload" width="400px">
- <el-row style="margin-bottom: 20px;">
- <span style="margin-right: 10px;">需求计划</span>
- <el-select size="mini" v-model="download.planType">
- <el-option v-for="dict in dict.type.sys_plan_type" :key="dict.value" :label="dict.label" :value="dict.value">
- </el-option>
- </el-select>
- </el-row>
- <el-row style="margin-bottom: 20px;">
- <span style="margin-right: 10px;">需求客户</span>
- <el-select clearable size="mini" v-model="download.customer" @clear="download.customer = ''" @focus="chooseOrg('CUSTOMER_PARAM', true, '选择客户')">
- <el-option v-for="item in mBcustomer" :key="item.id" :label="item.name" :value="item.code" />
- </el-select>
- </el-row>
- <el-row style="margin-bottom: 20px;">
- <span style="margin-right: 10px;">供应仓库</span>
- <el-select clearable size="mini" v-model="download.warehouse" @clear="cleanMb" @focus="chooseOrg('WAREHOUSE_PARAM', true, '选择仓库')">
- <el-option v-for="item in mBwarehouse" :key="item.id" :label="item.name" :value="item.code" />
- </el-select>
- </el-row>
- <el-row style="margin-bottom: 20px;">
- <span style="margin-right: 10px;">供应货位</span>
- <el-select clearable size="mini" v-model="download.cargoSpace" @clear="download.cargoSpace = ''" @focus="mbHuowei('ALLOCATION_PARAM', true, '选择货位', download.warehouseId)">
- <el-option v-for="item in mBcargoSpace" :key="item.id" :label="item.name" :value="item.code" />
- </el-select>
- </el-row>
- <el-row style="margin-bottom: 20px;">
- <span style="margin-right: 10px;">品类选择</span>
- <el-select
- v-model="download.category"
- size="mini"
- clearable
- @focus="chooseTreeRefer('MATERIALCLASSIFY_PARAM', false, '选择品类')"
- >
- <el-option v-for="item in classOptions" :key="item.id" :label="item.name" :value="item.code" />
- </el-select>
- </el-row>
- <div slot="footer">
- <el-button size="mini" type="primary" @click="mbDownload">模板下载</el-button>
- <el-button size="mini" @click="download.open = false">取 消</el-button>
- </div>
- </el-dialog>
- <Add v-model="isList" v-if="!isList" :pageStu="page" :disable="disable" :row="rowDetail" @refresh="searchList"/>
-
- <Refers ref="refer" @doSubmit="selectionsToInput" :single="true"/>
- <TreeRefers ref="tree" @doSubmit="selectionsToInput2" :single="true"/>
- </div>
- </template>
- <script>
- // 导入的token
- import { getToken } from "@/utils/auth";
- import Add from './add.vue'
- import Refers from '@/components/Refers/refers.vue'
- import TreeRefers from '@/components/Refers/treeRefer.vue'
- import CollapseTransition from '@/components/MyCollapse/collapse.vue'
- // 流程收回
- import { rebacktWork } from '@/api/purchase/workSpace.js'
- import {getDemandList, delDemand, downLoadDemand, exportDemand, submitDemand, confirmSubmit } from '@/api/purchase/purchaseDemand.js'
- export default {
- name: 'PurchaseDemandList',
- components: {
- Add,
- CollapseTransition,
- Refers,
- TreeRefers
- },
- dicts: ['sys_processing_mode', 'sys_status', 'sys_bill_source', 'sys_business', 'sys_reserve_ratio', 'sys_period_unit', 'sys_price_type', 'sys_plan_type'],
- data() {
- return {
- loading: true,
- // 导入参数
- upload: {
- // 是否显示弹出层(导入)
- open: false,
- // 弹出层标题(导入)
- title: "数据导入",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 1,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/pu/demand/import"
- },
- // 模板下载参数
- download: {
- open: false,
- planType: 'ZJH',
- customer: '',
- warehouse: '',
- warehouseId: '',
- cargoSpace: '',
- category: ''
- },
- mBcustomer: [],
- mBwarehouse: [],
- mBcargoSpace: [],
- classOptions: [],
- // 下拉收起配置
- expanded: false,
- // 页面配置
- isList: true,
- // 页面状态
- page: '',
- queryParams: {
- code: this.$route.query.billCode,
- customer: '',
- isCustomerSpecified: '',
- demandPersonal: '',
- source: '',
- planType: '',
- billType: '',
- demandDept: '',
- demandDate: '',
- remark: '',
- materialCode: '',
- status: '',
- pageNum: 1,
- pageSize: 50
- },
- referCondition: {
- type: '',
- isPage: true,
- title: ''
- },
- options: [{
- value: 'Y', label: '是',
- }, {
- value: 'N', label: '否'
- }],
- customerOptions: [],
- personOptions: [],
- deptOptions: [],
- tableList: [],
- total: 0,
- rowDetail: {},
- disable: false,
- ids: []
- }
- },
- created() {
- this.getList(this.queryParams)
- },
- methods: {
- // 格式化表格内容
- formatterPlanType(row) {
- switch(row.planType){
- case 'ZJH':
- return '周计划'
- case 'YJH':
- return '月计划'
- case 'JJXQ':
- return '紧急计划'
- }
- },
- formatterStatus(row) {
- switch(row.status){
- case '0':
- return '未提交'
- case '1':
- return '审批中'
- case '2':
- return '已完成'
- case '3':
- return '已驳回'
- case '9':
- return '已回退'
- }
- },
- formatterBillType(row) {
- switch (row.billType) {
- case 'ZQBH':
- return '周期备货'
- case 'FXXQ':
- return '分销需求'
- case 'TSXQ':
- return '特殊采购需求'
- case 'BDXQ':
- return '补单需求'
- case 'JJXQ':
- return '紧急需求单'
- case 'XPXQ':
- return '新品需求'
- case 'HZBM':
- return '合作部门需求'
- case 'DZBH':
- return '大宗备货'
- case 'XZCG':
- return '行政类采购'
- }
- },
- formatterSource(row) {
- switch (row.source) {
- case '1':
- return '手工导入'
- case '2':
- return '按客户计算'
- case '3':
- return '按仓库计算'
- case '4':
- return '手工新增'
- }
- },
- searchList() {
- this.getList(this.queryParams)
- },
- resetList() {
- this.queryParams = {
- code: '',
- customer: '',
- isCustomerSpecified: '',
- demandPersonal: '',
- source: '',
- planType: '',
- billType: '',
- demandDept: '',
- demandDate: '',
- remark: '',
- materialCode: '',
- status: '',
- pageNum: 1,
- pageSize: 50
- }
- this.getList(this.queryParams)
- },
- getList(params){
- getDemandList(params).then(res => {
- if (res.code === 200) {
- this.tableList = res.rows
- this.total = res.total
- }
- }).then(() => {
- this.loading = false
- }).catch(err => {
- this.loading = false
- })
- },
- handleSelectionChange(selection) {
- console.log('选中', selection)
- this.ids = selection.map(item => item.id)
- console.log('选中数组', this.ids.join())
- },
- mbDownload() {
- this.$modal.loading("正在下载模板,请稍后...");
- downLoadDemand(this.download).then(res => {
- this.$modal.closeLoading();
- const blob = new Blob([res], {
- type: "application/vnd.ms-excel;charset=UTF-8",
- });// 创建一个类文件对象:Blob对象表示一个不可变的、原始数据的类文件对象
- const downloadElement = document.createElement("a"); //创建a标签
- const href = window.URL.createObjectURL(blob); // 创建下载的链接
- // var temp = res.headers["content-disposition"];
- // var fileName = decodeURIComponent(temp.split("filename=")[1]); // 中文需要转码 (前端乱码)
- // var name = fileName.split(";")[0]; //切割成文件名
- downloadElement.href = href; //下载地址
- downloadElement.download = '采购需求单模板'+ this.parseTime(new Date().getTime()) + ".xlsx"; // 下载后文件名
- document.body.appendChild(downloadElement);
- downloadElement.click(); // 点击下载
- document.body.removeChild(downloadElement); // 下载完成移除元素
- window.URL.revokeObjectURL(href); // 释放blob对象
- this.download.open = false
- }).catch(err => {
- this.$modal.closeLoading();
- })
- },
- // 关闭模板下载弹窗清空参数
- clearDownload() {
- // 模板下载参数
- this.download = {
- open: false,
- planType: 'ZJH',
- customer: '',
- warehouse: '',
- warehouseId: '',
- cargoSpace: '',
- category: ''
- }
- },
- handleCommand(command) {
- // alert(command)
- if(command == '模板下载') {
- this.download.open = true
- }
- if (command == '数据导入') {
- this.upload.title = "用户导入"
- this.upload.open = true
- }
- },
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true;
- this.$modal.loading("正在导入数据,请稍后...");
- },
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- this.$modal.closeLoading();
- this.upload.open = false;
- this.upload.isUploading = false;
- this.$refs.upload.clearFiles();
- this.$alert(response.msg, "导入结果", { dangerouslyUseHTMLString: true });
- this.getList(this.queryParams);
- },
- errorFile(err) {
- this.$modal.closeLoading();
- this.$modal.notifyError("文件已变动,请重新上传");
- },
- // 提交上传文件
- submitFileForm() {
- this.$refs.upload.submit();
- },
- handleExport(command) {
- if(command == '选中导出') {
- if (this.ids.length == 0) {
- this.$modal.notifyWarning("请选中至少一条数据");
- } else {
- this.$modal.loading("正在导出数据,请稍后...");
- let param = {all: false, ids: this.ids}
- exportDemand(param).then(res => {
- this.$modal.closeLoading();
- const blob = new Blob([res], {
- type: "application/vnd.ms-excel;charset=UTF-8",
- });// 创建一个类文件对象:Blob对象表示一个不可变的、原始数据的类文件对象
- const downloadElement = document.createElement("a"); //创建a标签
- const href = window.URL.createObjectURL(blob); // 创建下载的链接
- // var temp = res.headers["content-disposition"];
- // var fileName = decodeURIComponent(temp.split("filename=")[1]); // 中文需要转码 (前端乱码)
- // var name = fileName.split(";")[0]; //切割成文件名
- downloadElement.href = href; //下载地址
- downloadElement.download = '采购需求单选中导出' + this.parseTime(new Date().getTime()) + ".xlsx"; // 下载后文件名
- document.body.appendChild(downloadElement);
- downloadElement.click(); // 点击下载
- document.body.removeChild(downloadElement); // 下载完成移除元素
- window.URL.revokeObjectURL(href); // 释放blob对象
- }).catch(err => {
- this.$modal.closeLoading();
- })
- }
- } else {
- this.$modal.loading("正在导出数据,请稍后...");
- let param2 = {all: true}
- exportDemand(param2).then(res => {
- this.$modal.closeLoading();
- const blob = new Blob([res], {
- type: "application/vnd.ms-excel;charset=UTF-8",
- });// 创建一个类文件对象:Blob对象表示一个不可变的、原始数据的类文件对象
- const downloadElement = document.createElement("a"); //创建a标签
- const href = window.URL.createObjectURL(blob); // 创建下载的链接
- // var temp = res.headers["content-disposition"];
- // var fileName = decodeURIComponent(temp.split("filename=")[1]); // 中文需要转码 (前端乱码)
- // var name = fileName.split(";")[0]; //切割成文件名
- downloadElement.href = href; //下载地址
- downloadElement.download = '采购需求单全部导出' + this.parseTime(new Date().getTime()) + ".xlsx";
- document.body.appendChild(downloadElement);
- downloadElement.click(); // 点击下载
- document.body.removeChild(downloadElement); // 下载完成移除元素
- window.URL.revokeObjectURL(href); // 释放blob对象
- }).catch(err => {
- this.$modal.closeLoading();
- })
- }
- },
- addDivision() {
- this.isList = false
- this.page = 'add'
- this.disable = false
- },
- check(row) {
- this.isList = false
- this.page = 'check'
- this.rowDetail = row
- this.disable = true
- },
- doubleClick(row) {
- this.isList = false
- this.page = 'check'
- this.rowDetail = row
- this.disable = true
- },
- // 表格选中数据
- rowSelect(row) {
- this.$refs.tables.toggleRowSelection(row);
- },
- edit(row) {
- this.isList = false
- this.page = 'edit'
- this.rowDetail = row
- this.disable = false
- },
- commit(row) {
- console.log('row', row)
- this.$modal.loading("提交中...");
- submitDemand(row).then(res => {
- if (res.code === 200) {
- this.$modal.notifySuccess("提交成功");
- this.$modal.closeLoading();
- this.getList(this.queryParams)
- }
- if (res.code === 233) {
- this.$modal.confirm(res.msg).then(function() {
- // 确认
- }).then(() => {
- confirmSubmit(row).then(res => {
- if (res.code === 200) {
- this.$modal.notifySuccess("提交成功");
- this.$modal.closeLoading();
- this.getList(this.queryParams)
- }
- }).catch(err => {
- this.$modal.closeLoading();
- })
- // 取消
- }).catch(() => {
- this.$modal.closeLoading();
- })
- this.$modal.closeLoading();
- }
- }).catch(err => {
- this.$modal.closeLoading();
- })
- },
- // 流程收回
- reback(row) {
- this.$modal.loading("收回中...");
- let params = {billCode: row.code, fdId: row.flowId, fdTemplateId: '18804432233a7813df7921d436ab69b7',billMaker: row.createBy }
- rebacktWork(params).then(res => {
- if (res.code === 200) {
- this.$modal.notifySuccess("收回成功");
- this.$modal.closeLoading();
- this.getList(this.queryParams)
- }
- }).catch(err => {
- this.$modal.closeLoading();
- })
- },
- // 行内删除
- deleteids(row) {
- console.log('row', row)
- this.$modal.confirm('确定删除选择数据?').then(() => {
- delDemand(row.id).then(res => {
- if (res.code === 200) {
- this.$modal.notifySuccess("删除成功");
- this.getList(this.queryParams)
- }
- })
- }).catch(() => {})
- },
- // 批量删除按钮
- delItems() {
- if(this.ids.length == 0) {
- this.$modal.notifyWarning("请选中至少一条数据");
- } else {
- let param = this.ids.join()
- this.$modal.confirm('确认删除选中数据?').then(() => {
- delDemand(param).then(res => {
- if (res.code === 200) {
- this.$modal.notifySuccess("删除成功");
- this.getList(this.queryParams)
- }
- })
- }).catch(() => {})
- }
- },
- handleSizeChange(val) {
- console.log(`每页 ${val} 条`);
- this.queryParams.pageSize = val
- this.getList(this.queryParams)
- },
- handleCurrentChange(val) {
- console.log(`当前页: ${val}`);
- this.queryParams.pageNum = val
- this.getList(this.queryParams)
- },
- drop() {
- this.expanded = !this.expanded
- },
- // 搜索区参照选择
- chooseOrg(type, isPage, title, stordocId) {
- this.referCondition.type = type
- this.referCondition.isPage = isPage
- this.referCondition.title = title
- this.referCondition.stordocId = stordocId
- this.$refs.refer.init(this.referCondition)
- },
- selectionsToInput(selection) {
- // 搜索区选择客户
- if (this.referCondition.type == 'CUSTOMER_PARAM' && this.referCondition.title == '需求客户') {
- this.customerOptions = selection
- this.queryParams.customer = selection[0].id
- }
- // 模板内选择客户
- if (this.referCondition.type == 'CUSTOMER_PARAM' && this.referCondition.title == '选择客户') {
- this.mBcustomer = selection
- this.download.customer = selection[0].code
- }
- // 模板内选择仓库
- if (this.referCondition.type == 'WAREHOUSE_PARAM' && this.referCondition.title == '选择仓库') {
- this.mBwarehouse = selection
- this.download.warehouse = selection[0].code
- this.download.warehouseId = selection[0].id
- }
- // 模板内选择货位
- if (this.referCondition.type == 'ALLOCATION_PARAM' && this.referCondition.title == '选择货位') {
- this.mBcargoSpace = selection
- this.download.cargoSpace = selection[0].code
- }
- if (this.referCondition.type == 'CONTACTS_PARAM') {
- this.personOptions = selection
- this.queryParams.demandPersonal = selection[0].code
- }
- if (this.referCondition.type == 'DEPT_PARAM') {
- this.deptOptions = selection
- this.queryParams.demandDept = selection[0].id
- }
- },
- mbHuowei(type, isPage, title, stordocId) {
- this.referCondition.type = type
- this.referCondition.isPage = isPage
- this.referCondition.title = title
- if(stordocId) {
- this.referCondition.stordocId = stordocId
- this.$refs.refer.init(this.referCondition)
- } else {
- this.$modal.notifyWarning("请先选择仓库")
- }
- },
- cleanMb() {
- this.download.warehouse = ''
- this.download.warehouseId = ''
- },
- // 搜索区树形选择
- chooseTreeRefer(type, isPage, title) {
- this.referCondition.type = type
- this.referCondition.isPage = isPage
- this.referCondition.title = title
- this.$refs.tree.init(this.referCondition)
- },
- selectionsToInput2(selection) {
- this.classOptions.push(selection)
- this.download.category = selection.code
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- #PurchaseDemandList {
- padding: 12px;
- box-sizing: border-box;
- overflow-y: scroll;
- }
- .btn_grooup {
- margin-bottom: 10px;
- display: flex;
- justify-content: flex-end;
- }
- .lines {
- margin-top: 0;
- }
- .el-pagination {
- margin-top: 10px;
- text-align: right;
- }
- ::v-deep .el-table__row > td {
- border-right: none;
- }
- ::v-deep .el-card .el-form-item {
- margin-bottom: 10px;
- }
- </style>
- <style>
- .exporttable {
- border: solid 1px #c0c0c0;
- }
- .el-table .el-table__header-wrapper th {
- font-size: 14px;
- }
- </style>
|