123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835 |
- <template>
- <div id="demandSummary">
- <div v-if="isList">
- <el-card>
- <el-form class="search_area" label-width="100px">
- <el-row :gutter="10">
- <el-col :span="1.5">
- <el-form-item label="行状态">
- <el-select multiple v-model="queryParams.rowStatus" size="mini" style="width: 200px" clearable>
- <el-option v-for="dict in dict.type.sys_row_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 size="mini" v-model="queryParams.buyer" @focus="chooseRefer('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="品类">
- <el-select
- v-model="queryParams.materialClassifyFourName"
- size="mini"
- clearable
- @focus="chooseTreeRefer('MATERIALCLASSIFY_PARAM', false, '选择品类')"
- style="width: 200px"
- >
- <el-option v-for="item in classOptions" :key="item.id" :label="item.name" :value="item.name" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="" label-width="20px">
- <el-button type="primary" size="mini" icon="el-icon-search" plain @click="search">搜索</el-button>
- <el-button size="mini" icon="el-icon-refresh" plain @click="reset">重置</el-button>
- </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-input
- v-model="queryParams.manufacturer"
- size="mini"
- clearable
- style="width: 200px"
- />
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="预测分类">
- <el-select v-model="queryParams.forecastClassification" size="mini" style="width: 200px" clearable>
- <el-option
- v-for="dict in dict.type.predictive_classify" :key="dict.value" :label="dict.label" :value="dict.label">
- </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.puManagerAuditor" @focus="chooseRefer('CONTACTS_PARAM', true, '审核人')" style="width: 200px">
- <el-option v-for="item in auditOptions" :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="周期单位">
- <el-select v-model="queryParams.periodUnit" size="mini" style="width: 200px" clearable>
- <el-option
- v-for="dict in dict.type.sys_period_unit" :key="dict.value" :label="dict.label" :value="dict.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col> -->
- </el-row>
- <el-row :gutter="10">
- <!-- <el-col :span="1.5">
- <el-form-item label="转请购单号">
- <el-input
- v-model="queryParams.zqgdh"
- size="mini"
- placeholder=""
- 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.departmentName" @focus="chooseRefer('DEPT_PARAM', true, '业务部门')" style="width: 200px">
- <el-option v-for="item in deptOptions" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- </el-col> -->
- </el-row>
- <el-row :gutter="10">
- <el-col :span="1.5">
- <el-form-item label="注册人">
- <el-input
- v-model="queryParams.registrant"
- size="mini"
- clearable
- style="width: 200px"
- />
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="业务类型">
- <el-select v-model="queryParams.businessType" size="mini" style="width: 200px" clearable>
- <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 v-model="queryParams.billSource" size="mini" style="width: 200px" clearable>
- <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-row>
- <el-row :gutter="10">
- <el-col :span="1.5">
- <el-form-item label="需求客户">
- <el-select clearable size="mini" v-model="queryParams.customer" @focus="chooseRefer('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 size="mini" v-model="queryParams.lastWarehouse" @focus="chooseRefer('WAREHOUSE_PARAM', true, '末级供应仓库')" style="width: 200px">
- <el-option v-for="item in lastWarehouseOptions" :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 size="mini" v-model="queryParams.lastAllocation" @focus="chooseRefer('ALLOCATION_PARAM', true, '末级供应库位', queryParams.lastWarehouse)" style="width: 200px">
- <el-option v-for="item in lastAllocationOptions" :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 v-model="queryParams.ywlx" size="mini" style="width: 200px" clearable>
- <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-row>
- <el-row :gutter="10">
- <el-col :span="1.5">
- <el-form-item label="物料编码">
- <el-input clearable size="mini" v-model="queryParams.names" @clear="queryParams.materialCode = ''" @focus="chooseMaterial" style="width: 200px">
- <el-button size="mini" slot="append" icon="el-icon-more" @click="chooseMaterial"></el-button>
- </el-input>
- <el-input v-show="false" v-model="queryParams.materialCode"></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="默认采购组织">
- <el-select clearable size="mini" v-model="queryParams.purchaseOrg" @focus="chooseRefer('ORG_PARAM', true, '默认采购组织')" style="width: 200px">
- <el-option v-for="item in orgOptions" :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-date-picker
- v-model="queryParams.demandDate"
- type="date"
- 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.code"
- size="mini"
- clearable
- style="width: 200px"
- />
- </el-form-item>
- </el-col>
- <el-col :span="1.5">
- <el-form-item label="审批结束日期">
- <el-date-picker
- v-model="queryParams.approverFinishTime"
- type="date"
- clearable
- value-format="yyyy-MM-dd"
- size="mini"
- style="width: 200px"
- >
- </el-date-picker>
- </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="editList">编辑</el-button>
- <el-button type="danger" size="mini" v-if="!lineDisable" @click="cancelEdit">取消编辑</el-button>
- <el-button type="success" size="mini" v-if="!lineDisable" @click="saveList">保存</el-button>
- <el-button type="primary" size="mini" @click="confirms">确认</el-button>
- <el-button type="primary" size="mini" @click="cancels">取消</el-button>
- <el-button type="primary" size="mini" @click="audits">审核</el-button>
- <el-button type="primary" size="mini" @click="closeLine">行关闭</el-button>
- <el-dropdown size="mini" @command="handleCommand">
- <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="Excel导出">Excel导出</el-dropdown-item>
- <el-dropdown-item command="导出明细">导出明细</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- <!-- <el-button type="primary" size="mini">转请购</el-button> -->
- </div>
- <el-table
- :data="tableList"
- fit
- show-summary
- :summary-method="getSummaries"
- max-height="550"
- style="font-size: 12px;"
- @selection-change="handleSelectionChange"
- :key="isUpdate"
- >
- <el-table-column type="selection" width="60" />
- <!-- <el-table-column show-overflow-tooltip label="行号" align="center" prop="rowNo"/> -->
- <el-table-column show-overflow-tooltip label="行状态" align="center" prop="status" width="120px" :formatter="hangStatus"/>
- <el-table-column show-overflow-tooltip label="一级品类" align="center" prop="materialClassifyOneName" width="120px"/>
- <el-table-column show-overflow-tooltip label="物料编码" align="center" prop="materialCode" width="180px"/>
- <el-table-column show-overflow-tooltip label="品名" align="center" prop="materialName" width="180px"/>
- <el-table-column show-overflow-tooltip label="规格" align="center" prop="specification" width="200px"/>
- <el-table-column show-overflow-tooltip label="单位" align="center" prop="unit"/>
- <el-table-column show-overflow-tooltip label="生产厂家/代理人" align="center" prop="manufacturer" width="180px"/>
- <el-table-column show-overflow-tooltip label="需求单位数" align="center" prop="demandNum" width="120px"/>
- <el-table-column show-overflow-tooltip label="近1月月均需求" align="center" prop="evensalesforyear" width="120px"/>
- <el-table-column show-overflow-tooltip label="近3月月均需求" align="center" prop="evensalesforthrmonth" width="120px"/>
- <el-table-column show-overflow-tooltip label="总最终净需求量" align="center" prop="netDemandNum" width="120px"/>
- <el-table-column show-overflow-tooltip label="总月销量" align="center" prop="totalMonthlySales"/>
- <el-table-column show-overflow-tooltip label="需求可用周期" align="center" prop="demandCycle" width="180px"/>
- <el-table-column show-overflow-tooltip label="呆滞量" align="center" prop="dullQut"/>
- <el-table-column show-overflow-tooltip label="采购周期" align="center" prop="buyPeriod"/>
- <el-table-column show-overflow-tooltip label="中心公共库存" align="center" prop="centralPublicStock" width="120px"/>
- <el-table-column show-overflow-tooltip label="中心仓专属货位" align="center" prop="centralWarehouse" width="120px"/>
- <el-table-column show-overflow-tooltip label="区域分仓公共库存" align="center" prop="regionPublicStock" width="130px"/>
- <el-table-column show-overflow-tooltip label="各项目仓库存" align="center" prop="eachWarehouseStock" width="120px"/>
- <el-table-column show-overflow-tooltip label="电商仓库" align="center" prop="commerceWarehouse"/>
- <el-table-column show-overflow-tooltip label="采购在途" align="center" prop="buyTransit"/>
- <el-table-column show-overflow-tooltip label="借出在途" align="center" prop="lendTransit"/>
- <el-table-column show-overflow-tooltip label="调拨在途" align="center" prop="transferTransit"/>
- <el-table-column show-overflow-tooltip label="库存总计" align="center" prop="stockTotal"/>
- <el-table-column show-overflow-tooltip label="最小包装量" align="center" prop="minPackage" width="100px"/>
- <el-table-column show-overflow-tooltip label="最小订货量" align="center" prop="minOrder" width="100px"/>
- <el-table-column show-overflow-tooltip label="最小批量" align="center" prop="minBatch"/>
- <el-table-column show-overflow-tooltip label="人工调整数" align="center" prop="artificialAdjust" width="100px"/>
- <el-table-column show-overflow-tooltip label="修改原因" align="center" prop="modifyReason" width="150px">
- <template slot-scope="scope">
- <el-input :disabled="scope.row.status !== '1'|| lineDisable || scope.row.artificialAdjust == '0'" v-model="scope.row.modifyReason"/>
- </template>
- </el-table-column>
- <el-table-column show-overflow-tooltip label="建议采购量" align="center" prop="suggestionPurchase" width="100px"/>
- <!-- <el-table-column show-overflow-tooltip label="建议净采购量" align="center" prop="suggestBuyQty" width="100px"/> -->
- <el-table-column show-overflow-tooltip label="最终采购量" align="center" prop="finalBuyQty" width="150">
- <template slot-scope="scope">
- <el-input :disabled="scope.row.status !== '1' || lineDisable" v-model="scope.row.finalBuyQty"/>
- </template>
- </el-table-column>
- <el-table-column show-overflow-tooltip label="二级品类" align="center" prop="materialClassifyTwoName" width="150px"/>
- <el-table-column show-overflow-tooltip label="三级品类" align="center" prop="materialClassifyThreeName" width="150px"/>
- <el-table-column show-overflow-tooltip label="四级品类" align="center" prop="materialClassifyFourName" width="150px"/>
- <el-table-column show-overflow-tooltip label="采购员" align="center" prop="buyerName" width="150px">
- <template slot-scope="scope">
- <el-input readonly :disabled="scope.row.status !== '1' || lineDisable" size="mini" v-model="scope.row.buyerName">
- <el-button size="mini" :disabled="scope.row.status !== '1' || lineDisable" slot="append" icon="el-icon-more" @click="chooseSon(scope.$index, 'CONTACTS_PARAM', true, '采购员')"></el-button>
- </el-input>
- </template>
- </el-table-column>
- <el-table-column show-overflow-tooltip label="默认采购组织" align="center" prop="purchaseOrgName" width="280px">
- <template slot-scope="scope">
- <el-input readonly :disabled="scope.row.status !== '1' || lineDisable" size="mini" v-model="scope.row.purchaseOrgName">
- <el-button size="mini" :disabled="scope.row.status !== '1' || lineDisable" slot="append" icon="el-icon-more" @click="chooseSon(scope.$index, 'ORG_PARAM', true, '默认采购组织')"></el-button>
- </el-input>
- </template>
- </el-table-column>
- <el-table-column show-overflow-tooltip label="有效期" align="center" prop="validityPeriod"/>
- <el-table-column show-overflow-tooltip label="有效期单位" align="center" prop="validityPeriodUnit" width="100px"/>
- <el-table-column show-overflow-tooltip label="业务类型" align="center" prop="businessType" :formatter="formatterBusinessType"/>
- <el-table-column show-overflow-tooltip label="安全库存量" align="center" prop="safetyStock" width="100px"/>
- <el-table-column show-overflow-tooltip label="单据来源" align="center" prop="billSource" :formatter="formatterSource"/>
- <el-table-column show-overflow-tooltip label="注册人" align="center" prop="registrant"/>
- <!-- <el-table-column label="可用量" align="center" prop="qty"/> -->
- <el-table-column show-overflow-tooltip label="总需与终采差异" align="center" prop="buyDiscrepancy" width="120px"/>
- <el-table-column show-overflow-tooltip label="集团预测分类" align="center" prop="forecastClassification" width="100px"/>
- <el-table-column show-overflow-tooltip label="中心仓占有量" align="center" prop="centerBinPossession" width="100px"/>
- <el-table-column show-overflow-tooltip label="中心仓可用量" align="center" prop="centralWarehouseAvailable" width="100px"/>
- <!-- <el-table-column label="物料类别" align="center" prop="materialCategory" width="150px"/> -->
- <!-- <el-table-column label="业务部门" align="center" prop="departmentName" width="150px"/> -->
- <!-- <el-table-column show-overflow-tooltip label="需求单位" align="center" prop="demandUnit"/> -->
- <el-table-column show-overflow-tooltip label="采购经理审核人" align="center" prop="puManagerAuditor" width="120px"/>
- <el-table-column
- fixed="right"
- label="操作"
- align="center"
- width="100"
- >
- <template slot-scope="scope">
- <el-button type="text" size="mini" @click="check(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, 15, 20]"
- :page-size="100"
- layout="total, sizes, prev, pager, next, jumper"
- :total=total>
- </el-pagination>
- </el-card>
- </div>
- <Add v-model="isList" v-if="!isList" :pageStu="page" :disable="disable" :row="rowDetail" :query="queryParams" @refresh="search"/>
-
- <Refers ref="refer" @doSubmit="selectionsToInput" :single="true"/>
- <TreeRefers ref="tree" @doSubmit="selectionsToInput2" :single="true"/>
- <popDialog ref="materialRefer" @doSubmit="selectMaterial" :single="true" />
- </div>
- </template>
- <script>
- import Add from './add.vue'
- import Refers from '@/components/Refers/refers.vue'
- import TreeRefers from '@/components/Refers/treeRefer.vue'
- import popDialog from '@/components/PopDialog/index.vue'
- import CollapseTransition from '@/components/MyCollapse/collapse.vue'
- import {getSummaryList, auditSummary, confirmSummary , cancelSummary , shutDownSummary, editSummaryList, exportList, exportItems } from '@/api/purchase/DemandSummary.js'
- export default {
- name: 'demandSummary',
- dicts: ['sys_row_status', 'predictive_classify', 'sys_period_unit', 'sys_business', 'sys_bill_source'],
- components: {
- Add,
- CollapseTransition,
- Refers,
- TreeRefers,
- popDialog
- },
- data() {
- return {
- hangStatus(row) {
- switch (row.status) {
- case '0':
- return '需补货'
- case '1':
- return '待计划确认'
- case '2':
- return '计划已确认'
- case '3':
- return '计划已审核'
- case '4':
- return '行关闭'
- case '5':
- return '总供应可满足'
- }
- },
- formatterBusinessType(row) {
- switch (row.businessType) {
- case 'ZQBH':
- return '周期备货'
- case 'FXXQ':
- return '分销需求'
- case 'TSXQ':
- return '特殊采购需求'
- case 'BDXQ':
- return '补单需求'
- case 'JJXQ':
- return '紧急需求单'
- case 'XPXQ':
- return '新品需求'
- case 'HZBM':
- return '合作部门需求'
- }
- },
- formatterSource(row) {
- switch (row.billSource) {
- case '1':
- return '手工导入'
- case '2':
- return '按客户计算'
- case '3':
- return '按仓库计算'
- case '4':
- return '手工新增'
- }
- },
- isUpdate: false,
- expanded: false,
- // 页面配置
- isList: true,
- // 页面状态
- page: '',
- queryParams: {
- rowStatus: [],
- buyer: '',
- buyerName: '',
- materialClassifyFourName: '',
- manufacturer: '',
- forecastClassification: '',
- periodUnit: '',
- departmentName: '',
- puManagerAuditor: '',
- // zqgdh: '',
- code: '',
- registrant: '',
- businessType: '',
- billSource: '',
- customer: '',
- lastWarehouse: '',
- lastAllocation: '',
- materialCode: '',
- names: '',
- purchaseOrg: '',
- demandDate: '',
- approverFinishTime: '',
- pageNum: 1,
- pageSize: 10
- },
- personOptions: [],
- classOptions: [],
- deptOptions: [],
- auditOptions: [],
- customerOptions: [],
- lastWarehouseOptions: [],
- lastAllocationOptions: [],
- orgOptions: [],
- options: [{
- value: 'Y', label: '是',
- }, {
- value: 'N', label: '否'
- }],
- referCondition: {
- type: '',
- isPage: true,
- title: ''
- },
- tableList: [],
- total: 0,
- rowDetail: {},
- disable: false,
- lineDisable: true,
- ids: [],
- allSelection: [],
- // 子表index
- tableIndex: null,
- referConditionMx: {
- type: '',
- isPage: true,
- title: ''
- }
- }
- },
- created() {
- this.getList(this.queryParams)
- },
- methods: {
- // 指定列合计
- getSummaries(param) {
- const { columns, data } = param;
- const sums = [];
- columns.forEach((column, index) => {
- if (index === 0) {
- sums[index] = '合计';
- return;
- }
- const values = data.map(item => Number(item[column.property]));
- if (column.property === 'demandNum' || column.property === 'netDemandNum' || column.property === 'artificialAdjust' || column.property === 'suggestBuyQty' || column.property === 'finalBuyQty') {
- sums[index] = values.reduce((prev, curr) => {
- const value = Number(curr);
- if (!isNaN(value)) {
- return prev + curr;
- } else {
- return prev;
- }
- }, 0);
- sums[index];
- }
- });
- return sums
- },
- // 搜索
- search() {
- this.getList(this.queryParams)
- },
- reset() {
- this.queryParams = {
- rowStatus: [],
- buyer: '',
- buyerName: '',
- materialClassifyFourName: '',
- manufacturer: '',
- forecastClassification: '',
- periodUnit: '',
- departmentName: '',
- puManagerAuditor: '',
- // zqgdh: '',
- code: '',
- registrant: '',
- businessType: '',
- billSource: '',
- customer: '',
- lastWarehouse: '',
- lastAllocation: '',
- materialCode: '',
- names: '',
- purchaseOrg: '',
- demandDate: '',
- approverFinishTime: '',
- pageNum: 1,
- pageSize: 10
- }
- this.getList(this.queryParams)
- },
- getList(params){
- getSummaryList(params).then(res => {
- if (res.code === 200) {
- this.tableList = res.rows
- this.total = res.total
- }
- })
- },
- handleSelectionChange(selection) {
- console.log('选中', selection)
- this.allSelection = selection
- this.ids = selection.map(item => item.demandItemId)
- console.log('选中数组', this.ids.join())
- },
- handleCommand(command) {
- if(command == 'Excel导出') {
- if(this.allSelection.length == 0) {
- this.$modal.msgWarning("请选中至少一条数据");
- } else {
- exportList(this.allSelection).then(res => {
- 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 = '导出Excel'; // 下载后文件名
- document.body.appendChild(downloadElement);
- downloadElement.click(); // 点击下载
- document.body.removeChild(downloadElement); // 下载完成移除元素
- window.URL.revokeObjectURL(href); // 释放blob对象
- })
- }
- }
- if (command == '导出明细') {
- if (this.allSelection.length == 0 || this.allSelection.length > 1) {
- this.$modal.msgWarning("明细只能进行单条导出!");
- } else {
- let param = this.queryParams
- param.sumFlag = this.allSelection[0].sumFlag
- exportItems(param).then(res => {
- 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 = '导出明细'; // 下载后文件名
- document.body.appendChild(downloadElement);
- downloadElement.click(); // 点击下载
- document.body.removeChild(downloadElement); // 下载完成移除元素
- window.URL.revokeObjectURL(href); // 释放blob对象
- })
- }
- }
- },
- check(row) {
- this.isList = false
- this.page = 'check'
- this.rowDetail = row
- this.disable = true
- },
- 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
- },
- editList() {
- console.log('Lists`````',this.tableList)
- this.lineDisable = false
- },
- cancelEdit() {
- this.lineDisable = true
- this.getList(this.queryParams)
- },
- saveList() {
- editSummaryList(this.tableList).then(res => {
- if (res.code === 200) {
- this.$modal.msgSuccess("保存成功");
- this.lineDisable = true
- this.getList(this.queryParams)
- }
- })
- },
- confirms() {
- if (this.ids.length == 0) {
- this.$modal.msgWarning("请选中至少一条数据");
- } else {
- confirmSummary(this.allSelection).then(res => {
- if (res.code === 200) {
- this.$modal.msgSuccess("确认成功");
- this.getList(this.queryParams)
- }
- })
- }
- },
- cancels() {
- if (this.ids.length == 0) {
- this.$modal.msgWarning("请选中至少一条数据");
- } else {
- let param = this.ids.join()
- cancelSummary(param).then(res => {
- if (res.code === 200) {
- this.$modal.msgSuccess("取消成功");
- this.getList(this.queryParams)
- }
- })
- }
- },
- audits() {
- if(this.ids.length == 0) {
- this.$modal.msgWarning("请选中至少一条数据");
- } else {
- let param = this.ids.join()
- auditSummary(param).then(res => {
- if (res.code === 200) {
- this.$modal.msgSuccess("审核成功");
- this.getList(this.queryParams)
- }
- })
- }
- },
- // 行关闭
- closeitem() {
- let param = this.ids.join()
- shutDownSummary(param).then(res => {
- if (res.code === 200) {
- this.$modal.msgSuccess("操作成功");
- this.getList(this.queryParams)
- }
- })
- },
- closeLine() {
- if (this.ids.length == 0) {
- this.$modal.msgWarning("请选中至少一条数据");
- } else {
- console.log('选中数组', this.allSelection)
- let item = this.allSelection.some(item => {
- return item.demandNum >= 2
- })
- if (item) {
- this.$modal.confirm('选中项有多个需求单位,是否确定关闭?').then(function () {
- }).then(() => {
- this.closeitem()
- }).catch(() => {})
- } else {
- this.closeitem()
- }
- }
- },
- // 搜索区参照选择
- chooseRefer(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.title == '采购员') {
- this.personOptions = selection
- this.queryParams.buyer = selection[0].code
- this.queryParams.buyerName = selection[0].name
- }
- if (this.referCondition.title == '业务部门') {
- this.deptOptions = selection
- this.queryParams.departmentName = selection[0].id
- }
- if (this.referCondition.title == '审核人') {
- this.auditOptions = selection
- this.queryParams.puManagerAuditor = selection[0].code
- }
- if (this.referCondition.title == '需求客户') {
- this.customerOptions = selection
- this.queryParams.customer = selection[0].id
- }
- if (this.referCondition.title == '末级供应仓库') {
- this.lastWarehouseOptions = selection
- this.queryParams.lastWarehouse = selection[0].id
- }
- if (this.referCondition.title == '末级供应库位') {
- this.lastAllocationOptions = selection
- this.queryParams.lastAllocation = selection[0].id
- }
- if (this.referCondition.title == '默认采购组织') {
- this.orgOptions = selection
- this.queryParams.purchaseOrg = selection[0].id
- }
- if (this.referConditionMx.title == '采购员') {
- console.log('选择进了吗',this.tableList)
- this.tableList[this.tableIndex].buyer = selection[0].code
- this.tableList[this.tableIndex].buyerName = selection[0].name
- }
- if (this.referConditionMx.title == '默认采购组织') {
- console.log('选择进了吗',this.tableList)
- this.tableList[this.tableIndex].purchaseOrg = selection[0].id
- this.tableList[this.tableIndex].purchaseOrgName = selection[0].name
- }
- },
- // 搜索区树形选择
- 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.queryParams.materialClassifyFourName = selection.name
- },
- // 搜索区物料编码
- chooseMaterial() {
- this.$refs.materialRefer.init()
- },
- selectMaterial(selection) {
- this.queryParams.materialCode = selection[0].code
- this.queryParams.names = selection[0].name
- },
- // 明细行选择业务部门参照带出业务部门数据
- chooseSon(index, type, isPage, title) {
- this.tableIndex = index
- this.referConditionMx.type = type
- this.referConditionMx.isPage = isPage
- this.referConditionMx.title = title
- this.$refs.refer.init(this.referConditionMx)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- #demandSummary {
- height: calc(100vh - 84px);
- padding: 12px;
- box-sizing: border-box;
- overflow-y: scroll;
- }
- .btn_grooup {
- margin-bottom: 10px;
- display: flex;
- justify-content: flex-end;
- }
- .lines {
- margin-top: 0;
- }
- .hang {
- margin: auto;
- }
- .hang ::v-deep .el-form-item__content{
- margin-left: 0px !important;
- }
- .el-pagination {
- margin-top: 10px;
- text-align: right;
- }
- </style>
|