|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<el-card class="el-card">
|
|
|
|
<el-form v-if="queryList && queryList.length > 0 && showSearch" :model="filterQuery" class="query-form" size="mini" label-width="120px">
|
|
|
|
<!-- <el-row>
|
|
|
|
<el-col :span="8">
|
|
|
|
<el-form-item class="query-form-item" label="盘点单号:">
|
|
|
|
<el-input v-model="filterQuery.orderId" placeholder="请输入盘点单号" style="width: 90%"
|
|
|
|
|
|
|
|
clearable="true"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="8">
|
|
|
|
<el-form-item class="query-form-item" label="盘点仓库:">
|
|
|
|
<el-select v-model="filterQuery.invStorageCode" placeholder="请选择盘点仓库" clearable="true" style="width: 90%"
|
|
|
|
|
|
|
|
@change="invChange"
|
|
|
|
>
|
|
|
|
<el-option
|
|
|
|
v-for="item in invList"
|
|
|
|
:key="item.name"
|
|
|
|
:label="item.name"
|
|
|
|
:value="item.code">
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="8">
|
|
|
|
<el-form-item class="query-form-item" label="盘点货位:">
|
|
|
|
<el-select v-model="filterQuery.invWarehouseCode" placeholder="请选择盘点货位" clearable="true"
|
|
|
|
style="width: 90%"
|
|
|
|
>
|
|
|
|
<el-option
|
|
|
|
v-for="item in spaceList"
|
|
|
|
:key="item.name"
|
|
|
|
:label="item.name"
|
|
|
|
:value="item.code">
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
</el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</el-col>
|
|
|
|
</el-row> -->
|
|
|
|
<el-row style=" display:flex; flex-wrap: wrap; ">
|
|
|
|
<template v-for="(item, index) in queryList" >
|
|
|
|
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
<el-input
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
@keyup.enter.native="executeFuc($event,'5',item.clickFuc)"
|
|
|
|
clearable
|
|
|
|
></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item v-if="item.columnType == 'select' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
<el-select v-model="filterQuery[item.columnName]"
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
clearable>
|
|
|
|
<el-option
|
|
|
|
v-for="dict in item.lableRuleObj"
|
|
|
|
:key="dict.value"
|
|
|
|
:label="dict.label"
|
|
|
|
:value="dict.value"
|
|
|
|
/>
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
<span v-if="item.isShowXx == '1'" style="float: right; color: #8492a6; font-size: 13px">{{ item.code }}</span>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item v-if="item.columnType == 'selectServer' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
<el-select
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
filterable
|
|
|
|
remote
|
|
|
|
:remote-method="(query) => executeFuc(query,'5',item.clickFuc)"
|
|
|
|
clearable>
|
|
|
|
<el-option
|
|
|
|
v-for="item in options[item.clickFuc]"
|
|
|
|
:key="item.code"
|
|
|
|
:label="item.label"
|
|
|
|
:value="item.code"
|
|
|
|
/>
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
<span v-if="item.isShowXx == '1'" style="float: right; color: #8492a6; font-size: 13px">{{ item.code }}</span>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item v-if="item.columnType == 'datePicker' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
<el-date-picker
|
|
|
|
:picker-options="pickerOptions"
|
|
|
|
v-model="actDateRange"
|
|
|
|
type="daterange"
|
|
|
|
format="yyyy 年 MM 月 dd 日"
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
range-separator="至"
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
></el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item v-if="item.columnType == 'date' && executeEval(row,item.expression,true)" :label="item.columnDesc+`:`">
|
|
|
|
<el-date-picker
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
:style="`width:${item.width+'px'}`"
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
type="date"
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
></el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
</template>
|
|
|
|
</el-row>
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
<div class="top-right-btn">
|
|
|
|
<el-button-group style="margin-left: 10px;display:flex;">
|
|
|
|
<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-group>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="list" style="width: 100%" highlight-current-row
|
|
|
|
@current-change="(row) => executeFuc(row,'0',tableObj.handleChangeFuc)"
|
|
|
|
border>
|
|
|
|
<!-- <el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-table-column label="盘点单号" prop="orderId" width="160"></el-table-column>
|
|
|
|
<el-table-column label="仓库" prop="invStorageName" width="120"></el-table-column>
|
|
|
|
<el-table-column label="货位" prop="invSubStorageName" width="120"></el-table-column>
|
|
|
|
<el-table-column label="盘点类型" prop="countType" width="120">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span>{{ countTypeMap[scope.row.countType] }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="盘点人" prop="createUser" width="120"></el-table-column>
|
|
|
|
<el-table-column label="盘点时间" prop="createTime" width="180"></el-table-column>
|
|
|
|
<el-table-column label="状态" prop="status" width="120">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag>{{ statusMap[scope.row.status] }}</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column> -->
|
|
|
|
<template v-for="(item, index) in tableHeader">
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'id' && executeEval(row,item.expression,true)"
|
|
|
|
type="index" :label="item.columnDesc"></el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'selection'"
|
|
|
|
type="selection"
|
|
|
|
:width="item.width"
|
|
|
|
:selectable="(row,number) => executeFuc(row,'3',item.clickFuc)"
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'radio' && executeEval(row,item.expression,true)"
|
|
|
|
:prop="item.columnName"
|
|
|
|
:label="item.columnDesc"
|
|
|
|
:sortable="item.sort"
|
|
|
|
:width="item.width"
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
:key="item.columnName"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-radio :label="scope.row.id" v-model="radioCheck"><span></span></el-radio>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'laber' && executeEval(row,item.expression,true)"
|
|
|
|
:prop="item.columnName"
|
|
|
|
:label="item.columnDesc"
|
|
|
|
:sortable="item.sort"
|
|
|
|
:width="item.width"
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
:key="item.columnName"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item.lableRuleObj[scope.row[item.columnName]])}">{{ item.lableRuleObj[scope.row[item.columnName]] }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'eltag' && executeEval(row,item.expression,true)"
|
|
|
|
:prop="item.columnName"
|
|
|
|
:label="item.columnDesc"
|
|
|
|
:sortable="item.sort"
|
|
|
|
:width="item.width"
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
:key="item.columnName"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag :type="executeFuc(scope.row,'4',item,item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName])">
|
|
|
|
<span>{{ item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName] }}</span>
|
|
|
|
</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'button' && executeEval(row,item.expression,true)"
|
|
|
|
:prop="item.columnName"
|
|
|
|
:label="item.columnDesc"
|
|
|
|
:width="item.width"
|
|
|
|
:key="item.columnName"
|
|
|
|
fixed="right"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button v-for="(buttonItem, buttonIndex) in item.buttonRulObj"
|
|
|
|
:type="buttonItem.type"
|
|
|
|
:size="buttonItem.size"
|
|
|
|
:style="buttonItem.style"
|
|
|
|
:key="buttonItem"
|
|
|
|
v-if="executeEval(scope.row,buttonItem.hasPermi,true)"
|
|
|
|
:disabled="executeEval(scope.row,buttonItem.disabledFuc,false)"
|
|
|
|
@click.native.stop="executeFuc(scope.row,'1',buttonItem.clickFuc)"
|
|
|
|
>{{ buttonItem.name }}
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'text' && executeEval(row,item.expression,true)"
|
|
|
|
:prop="item.columnName"
|
|
|
|
:label="item.columnDesc"
|
|
|
|
:sortable="item.sort"
|
|
|
|
:width="item.width"
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
:key="item.columnName"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item,scope.row[item.columnName])}">{{ scope.row[item.columnName] }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</template>
|
|
|
|
</el-table>
|
|
|
|
<pagination
|
|
|
|
v-show="total>0"
|
|
|
|
:total="total"
|
|
|
|
:limit.sync="filterQuery.limit"
|
|
|
|
:page.sync="filterQuery.page"
|
|
|
|
@pagination="getList"
|
|
|
|
></pagination>
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
<el-card>
|
|
|
|
<el-table v-loading="detailLoading" :data="detailList" style="width: 100%" highlight-current-row
|
|
|
|
border>
|
|
|
|
<!-- <el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
<el-table-column width="160" label="物资名称" prop="productName" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column width="160" label="DI/物资编码" prop="nameCode" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column width="160" label="规格型号" prop="ggxh" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column width="120" label="批次号" prop="batchNo"></el-table-column>
|
|
|
|
<el-table-column width="100" label="账目数量" prop="invNum"></el-table-column>
|
|
|
|
<el-table-column width="100" label="盘点数量" prop="countNum">
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="盘盈数量" prop="profitNum" width="100"></el-table-column>
|
|
|
|
<el-table-column label="盘亏数量" prop="lossNum" width="100"></el-table-column>
|
|
|
|
<el-table-column label="盈亏状态" prop="status" width="100">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag>
|
|
|
|
{{ countStatusMap[scope.row.status] }}
|
|
|
|
</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="生产日期" width="120" prop="produceDate"></el-table-column>
|
|
|
|
<el-table-column label="失效日期" width="120" prop="expireDate" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="生产企业" width="180" prop="ylqxzcrbarmc" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="注册/备案凭证号" width="180" prop="zczbhhzbapzbh" show-overflow-tooltip></el-table-column>
|
|
|
|
<el-table-column label="操作" fixed="right" width="120">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button
|
|
|
|
type="text"
|
|
|
|
size="small"
|
|
|
|
@click.native.stop="showCode(scope.row)"
|
|
|
|
>详情
|
|
|
|
</el-button
|
|
|
|
>
|
|
|
|
</template>
|
|
|
|
</el-table-column> -->
|
|
|
|
<template v-for="(item, index) in tableHeader2">
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'id' && executeEval(row,item.expression,true)"
|
|
|
|
type="index" :label="item.columnDesc"></el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'selection'"
|
|
|
|
type="selection"
|
|
|
|
:width="item.width"
|
|
|
|
:selectable="(row,number) => executeFuc(row,'3',item.clickFuc)"
|
|
|
|
></el-table-column>
|
|
|
|
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'radio' && executeEval(row,item.expression,true)"
|
|
|
|
:prop="item.columnName"
|
|
|
|
:label="item.columnDesc"
|
|
|
|
:sortable="item.sort"
|
|
|
|
:width="item.width"
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
:key="item.columnName"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-radio :label="scope.row.id" v-model="radioCheck"><span></span></el-radio>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'laber' && executeEval(row,item.expression,true)"
|
|
|
|
:prop="item.columnName"
|
|
|
|
:label="item.columnDesc"
|
|
|
|
:sortable="item.sort"
|
|
|
|
:width="item.width"
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
:key="item.columnName"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item.lableRuleObj[scope.row[item.columnName]])}">{{ item.lableRuleObj[scope.row[item.columnName]] }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'eltag' && executeEval(row,item.expression,true)"
|
|
|
|
:prop="item.columnName"
|
|
|
|
:label="item.columnDesc"
|
|
|
|
:sortable="item.sort"
|
|
|
|
:width="item.width"
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
:key="item.columnName"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-tag :type="executeFuc(scope.row,'4',item,item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName])">
|
|
|
|
<span>{{ item.lableRuleObj?item.lableRuleObj[scope.row[item.columnName]]:scope.row[item.columnName] }}</span>
|
|
|
|
</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'button' && executeEval(row,item.expression,true)"
|
|
|
|
:prop="item.columnName"
|
|
|
|
:label="item.columnDesc"
|
|
|
|
:width="item.width"
|
|
|
|
:key="item.columnName"
|
|
|
|
fixed="right"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button v-for="(buttonItem, buttonIndex) in item.buttonRulObj"
|
|
|
|
:type="buttonItem.type"
|
|
|
|
:size="buttonItem.size"
|
|
|
|
:style="buttonItem.style"
|
|
|
|
:key="buttonItem"
|
|
|
|
v-if="executeEval(scope.row,buttonItem.hasPermi,true)"
|
|
|
|
:disabled="executeEval(scope.row,buttonItem.disabledFuc,false)"
|
|
|
|
@click.native.stop="executeFuc(scope.row,'1',buttonItem.clickFuc)"
|
|
|
|
>{{ buttonItem.name }}
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
v-if="item.columnType == 'text' && executeEval(row,item.expression,true)"
|
|
|
|
:prop="item.columnName"
|
|
|
|
:label="item.columnDesc"
|
|
|
|
:sortable="item.sort"
|
|
|
|
:width="item.width"
|
|
|
|
:show-overflow-tooltip="item.tooltip"
|
|
|
|
:key="item.columnName"
|
|
|
|
>
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<span :style="{color: executeFuc(scope.row,'4',item,scope.row[item.columnName])}">{{ scope.row[item.columnName] }}</span>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</template>
|
|
|
|
</el-table>
|
|
|
|
<pagination
|
|
|
|
v-show="detailTotal>0"
|
|
|
|
:total="detailTotal"
|
|
|
|
:limit.sync="detailQuery.limit"
|
|
|
|
:page.sync="detailQuery.page"
|
|
|
|
@pagination="getCountOrderDetailList"
|
|
|
|
></pagination>
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
|
|
<el-dialog
|
|
|
|
title="码详情"
|
|
|
|
:visible.sync="codesVisible"
|
|
|
|
width="60%"
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
v-if="codesVisible"
|
|
|
|
append-to-body
|
|
|
|
>
|
|
|
|
<invCountCodes
|
|
|
|
:codeQuery="codeQuery"
|
|
|
|
></invCountCodes>
|
|
|
|
</el-dialog>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {getInvListByUserOptimize} from "@/api/system/invWarehouse";
|
|
|
|
import {getInvSpaceListOptimize} from "@/api/inventory/invSpace";
|
|
|
|
import {
|
|
|
|
getCountOrderList,
|
|
|
|
getCountOrderDetailList
|
|
|
|
} from "@/api/inventory/invCountOrder";
|
|
|
|
import invCountCodes from "@/views/inventory/count/InvCountCodes.vue";
|
|
|
|
import {
|
|
|
|
getHead,executeFuc
|
|
|
|
} from "@/utils/customConfig";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "InvCountOrderCompleted",
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
showSearch: true,
|
|
|
|
filterQuery: {
|
|
|
|
orderId: null,
|
|
|
|
invCode: this.$store.getters.locInvCode,
|
|
|
|
invSpaceCode: null,
|
|
|
|
status: 2,
|
|
|
|
page: 1,
|
|
|
|
limit: 20,
|
|
|
|
},
|
|
|
|
list: [],
|
|
|
|
total: 0,
|
|
|
|
tableHeader:[],
|
|
|
|
queryList:[],
|
|
|
|
fromList:[],
|
|
|
|
tableHeader2:[],
|
|
|
|
queryList2:[],
|
|
|
|
fromList2:[],
|
|
|
|
options: {
|
|
|
|
getInvList:[],
|
|
|
|
getSpaceList:[],
|
|
|
|
},
|
|
|
|
invList: [],
|
|
|
|
spaceList: [],
|
|
|
|
loading: false,
|
|
|
|
formVisible: false,
|
|
|
|
statusMap: {
|
|
|
|
0: "草稿",
|
|
|
|
1: "未审核",
|
|
|
|
2: "已审核"
|
|
|
|
},
|
|
|
|
countOrder: {},
|
|
|
|
countType: null,
|
|
|
|
countTypeMap: {
|
|
|
|
0: "整库盘点",
|
|
|
|
1: "货位盘点",
|
|
|
|
2: "部分盘点"
|
|
|
|
},
|
|
|
|
countStatusMap: {
|
|
|
|
0: '亏损',
|
|
|
|
1: '盈利',
|
|
|
|
2: "平衡"
|
|
|
|
},
|
|
|
|
detailQuery: {
|
|
|
|
orderIdFk: null,
|
|
|
|
page: 1,
|
|
|
|
limit: 20
|
|
|
|
},
|
|
|
|
detailList: [],
|
|
|
|
detailTotal: 0,
|
|
|
|
detailLoading: false,
|
|
|
|
codeQuery: {
|
|
|
|
orderIdFk: null,
|
|
|
|
relId: null,
|
|
|
|
batchNo: null,
|
|
|
|
edit: false
|
|
|
|
},
|
|
|
|
codesVisible: false
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onReset() {
|
|
|
|
this.$router.push({
|
|
|
|
path: "",
|
|
|
|
});
|
|
|
|
this.filterQuery = {
|
|
|
|
orderId: null,
|
|
|
|
invCode: this.$store.getters.locInvCode,
|
|
|
|
invSpaceCode: null,
|
|
|
|
status: 2,
|
|
|
|
page: 1,
|
|
|
|
limit: 20,
|
|
|
|
};
|
|
|
|
this.spaceList = [];
|
|
|
|
this.getList();
|
|
|
|
this.getSpaceList(this);
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
hideSearch() {
|
|
|
|
this.showSearch = !this.showSearch;
|
|
|
|
},
|
|
|
|
onSubmit() {
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
getList() {
|
|
|
|
this.loading = true;
|
|
|
|
getCountOrderList(this.filterQuery).then((res) => {
|
|
|
|
this.loading = false;
|
|
|
|
if (res.code === 20000) {
|
|
|
|
this.list = res.data.list || [];
|
|
|
|
this.total = res.data.total || 0;
|
|
|
|
} else {
|
|
|
|
this.$message.error(res.message);
|
|
|
|
this.list = [];
|
|
|
|
this.total = 0;
|
|
|
|
}
|
|
|
|
}).catch((error) => {
|
|
|
|
this.loading = false;
|
|
|
|
this.$message.error(error.message);
|
|
|
|
this.list = [];
|
|
|
|
this.total = 0;
|
|
|
|
})
|
|
|
|
},
|
|
|
|
invChange(_this) {
|
|
|
|
_this.spaceList = [];
|
|
|
|
_this.filterQuery.fromInvSpaceCode = null;
|
|
|
|
_this.getSpaceList(_this);
|
|
|
|
},
|
|
|
|
getInvList(_this) {
|
|
|
|
getInvListByUserOptimize()
|
|
|
|
.then((response) => {
|
|
|
|
_this.options.getInvList = response.data || [];
|
|
|
|
_this.getList();
|
|
|
|
})
|
|
|
|
.catch(() => {
|
|
|
|
});
|
|
|
|
_this.getSpaceList(_this);
|
|
|
|
},
|
|
|
|
getSpaceList(_this) {
|
|
|
|
let params = {invWarehouseCode: _this.filterQuery.invStorageCode, status: 1};
|
|
|
|
getInvSpaceListOptimize(params).then((res) => {
|
|
|
|
_this.options.getSpaceList = res.data.list || [];
|
|
|
|
_this.getList();
|
|
|
|
})
|
|
|
|
},
|
|
|
|
addCountOrder(type) {
|
|
|
|
this.formVisible = true;
|
|
|
|
this.formName = 'add_' + type;
|
|
|
|
this.countOrder = {};
|
|
|
|
this.countType = type;
|
|
|
|
},
|
|
|
|
onRestDetail() {
|
|
|
|
this.detailQuery = {
|
|
|
|
orderIdFk: null,
|
|
|
|
page: 1,
|
|
|
|
limit: 20
|
|
|
|
};
|
|
|
|
this.detailList = [];
|
|
|
|
this.detailTotal = 0;
|
|
|
|
},
|
|
|
|
handleChange(_this,row) {
|
|
|
|
_this.detailQuery.orderIdFk = row.orderId;
|
|
|
|
_this.detailQuery.page = 1;
|
|
|
|
_this.getCountOrderDetailList()
|
|
|
|
},
|
|
|
|
getCountOrderDetailList() {
|
|
|
|
this.detailLoading = true;
|
|
|
|
getCountOrderDetailList(this.detailQuery).then((res) => {
|
|
|
|
this.detailLoading = false;
|
|
|
|
if (res.code === 20000) {
|
|
|
|
this.detailList = res.data.list || [];
|
|
|
|
this.detailTotal = res.data.total || 0;
|
|
|
|
} else {
|
|
|
|
this.detailList = [];
|
|
|
|
this.detailTotal = 0;
|
|
|
|
}
|
|
|
|
}).catch(() => {
|
|
|
|
this.detailLoading = false;
|
|
|
|
this.detailList = [];
|
|
|
|
this.detailTotal = 0;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
showCode(_this,row) {
|
|
|
|
_this.codeQuery = {
|
|
|
|
orderIdFk: row.orderIdFk,
|
|
|
|
relId: row.relId,
|
|
|
|
batchNo: row.batchNo,
|
|
|
|
edit: false
|
|
|
|
};
|
|
|
|
_this.codesVisible = true;
|
|
|
|
},
|
|
|
|
executeFuc(row,type,clickFuc,value){
|
|
|
|
return executeFuc(this,row,type,clickFuc,value);
|
|
|
|
},
|
|
|
|
executeEval(row,expression,defaultRet){
|
|
|
|
if(expression){
|
|
|
|
return eval(expression);
|
|
|
|
}
|
|
|
|
return defaultRet;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
invCountCodes
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
document.body.ondrop = function (event) {
|
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
|
|
|
};
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
this.getInvList(this);
|
|
|
|
getHead("InvCountOrderCompleted-1","1").then((re) => {
|
|
|
|
// 处理返回的数据
|
|
|
|
this.tableObj = re.data;
|
|
|
|
this.tableHeader = re.data.tableList;
|
|
|
|
this.queryList = re.data.queryList;
|
|
|
|
this.fromList = re.data.fromList;
|
|
|
|
});
|
|
|
|
getHead("InvCountOrderCompleted-2","1").then((re) => {
|
|
|
|
// 处理返回的数据
|
|
|
|
this.tableObj2 = re.data;
|
|
|
|
this.tableHeader2 = re.data.tableList;
|
|
|
|
this.queryList2 = re.data.queryList;
|
|
|
|
this.fromList2 = re.data.fromList;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style type="text/scss" lang="scss">
|
|
|
|
</style>
|
|
|
|
|