1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="68px">
- <el-row :gutter="20">
- <el-col :span="6">
- <el-form-item label="编码" prop="code">
- <el-input v-model="queryParams.code" placeholder="请输入编码" clearable @keyup.enter.native="handleQuery"/>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="目标名称" prop="goalName">
- <el-input v-model="queryParams.goalName" placeholder="请输入目标名称" clearable @keyup.enter.native="handleQuery"/>
- </el-form-item>
- </el-col>
- <el-col :span="8">
- <el-form-item label="单据日期" prop="documentDate">
- <el-date-picker
- v-model="documentDateRange"
- @change="setBeginAndEnd"
- type="daterange"
- align="right"
- range-separator="至"
- start-placeholder="开始日期"
- end-placeholder="结束日期"
- value-format="yyyy-MM-dd"
- @keyup.enter.native="handleQuery"
- :picker-options="pickerOptions">
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="4">
- <el-form-item>
- <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
- <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
- <el-row :gutter="20">
- <el-col :span="6">
- <el-form-item label="年度" prop="annual">
- <el-date-picker
- v-model="queryParams.annual"
- type="year"
- clearable
- value-format="yyyy"
- @keyup.enter.native="handleQuery"
- placeholder="请输入年度">
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="月份" prop="monthly">
- <el-date-picker
- v-model="queryParams.monthly"
- type="month"
- clearable
- value-format="yyyy-MM"
- @keyup.enter.native="handleQuery"
- placeholder="请输入月份">
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="制单人" prop="creator">
- <el-popover-select-v2 v-model="queryParams.creator" title="制单人" valueKey="name"
- referName="CONTACTS_PARAM"
- :dataMapping="{ creatorCode: 'code', creator: 'name'}"
- :source.sync="queryParams" placeholder="请输入制单人">
- </el-popover-select-v2>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="部门" prop="dept">
- <el-popover-select-v2 v-model="queryParams.dept" title="部门" valueKey="name"
- referName="DEPT_PARAM"
- :dataMapping="{ deptCode: 'code', dept: 'name'}"
- :source.sync="queryParams" placeholder="请输入部门">
- </el-popover-select-v2>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col :span="6">
- <el-form-item label="目标类型" prop="goalCategory">
- <el-select v-model="queryParams.goalCategory" placeholder="请输入目标类型" @change="changeGoalCategoryQuery" @keyup.enter.native="handleQuery">
- <el-option
- v-for="item in goalCategoryList"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item v-if="queryParams.goalCategory === '客户维度'" label="客户" prop="custom">
- <el-popover-select-v2 v-model="queryParams.custom" title="客户" valueKey="name"
- referName="CUSTOMER_PARAM"
- :dataMapping="{ customCode: 'code', custom: 'name'}"
- :source.sync="queryParams" placeholder="请输入客户">
- </el-popover-select-v2>
- </el-form-item>
- <el-form-item v-if="queryParams.goalCategory === '销售区域'" label="销售区域" prop="saleZone">
- <el-popover-select-v2 v-model="queryParams.saleZoneCode" title="销售区域" valueKey="name"
- referName="MK_SALESAREA_PARAM"
- :dataMapping="{ saleZoneCode: 'code', saleZone: 'name'}"
- :source.sync="queryParams" placeholder="请输入销售区域">
- </el-popover-select-v2>
- </el-form-item>
- <el-form-item v-if="queryParams.goalCategory === '一级分类'" label="一级分类" prop="oneLevelClassify">
- <el-select v-model="queryParams.oneLevelClassify" size="mini" clearable
- @focus="chooseTreeReferForQuery('MATERIALCLASSIFY_PARAM', false, '一级物料分类')"
- style="width: 200px">
- <el-option v-for="item in classOptions" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- <el-form-item v-if="queryParams.goalCategory === '二级分类'" label="二级分类" prop="custom">
- <el-select v-model="queryParams.twoLevelClassify" size="mini" clearable
- @focus="chooseTreeReferForQuery('MATERIALCLASSIFY_PARAM', false, '二级物料分类')"
- style="width: 200px">
- <el-option v-for="item in classOptions" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="单据状态" prop="documentStatus">
- <el-select v-model="queryParams.documentStatus" placeholder="请选择">
- <el-option
- v-for="item in [{value: '未提交', label: '未提交'}, {value: '审核中', label: '审核中'}, {value: '已审核', label: '已审核'}]"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <el-row :gutter="10" class="mb8" style="float: right">
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- >新增
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- plain
- icon="el-icon-delete"
- size="mini"
- :disabled="multiple"
- @click="handleDelete"
- >删除
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="el-icon-grape"
- size="mini"
- :disabled="multiple"
- >提交
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="info"
- plain
- icon="el-icon-upload2"
- size="mini"
- @click="handleImport"
- >导入</el-button>
- </el-col>
- <el-col :span="1.5">
- <el-dropdown @command="handleCommand">
- <el-button type="warning" plain icon="el-icon-download" size="mini">
- 导出<i class="el-icon-arrow-down el-icon--right"></i>
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="export">导出</el-dropdown-item>
- <el-dropdown-item command="exportDetails">导出明细</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </el-col>
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
- </el-row>
- <el-table v-loading="loading" :data="monthGoalMergeList" @selection-change="handleSelectionChange">
- <el-table-column type="selection" width="55" align="center"/>
- <el-table-column label="编码" align="center" prop="code"/>
- <el-table-column label="目标名称" align="center" prop="goalName"/>
- <el-table-column label="单据日期" align="center" prop="documentDate" width="180">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.documentDate, '{y}-{m}-{d}') }}</span>
- </template>
- </el-table-column>
- <el-table-column label="年度" align="center" prop="annual"/>
- <el-table-column label="月份" align="center" prop="monthly"/>
- <el-table-column label="客户" align="center" prop="custom"/>
- <el-table-column label="制单人" align="center" prop="creator"/>
- <el-table-column label="部门" align="center" prop="dept"/>
- <el-table-column label="目标类型" align="center" prop="goalCategory"/>
- <el-table-column label="目标值合计" align="center" prop="goalSum"/>
- <el-table-column label="单据状态" align="center" prop="documentStatus"/>
- <el-table-column label="操作" align="center" width="180" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-document-copy"
- @click="handleCopy(scope.row.id)"
- >复制
- </el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- >修改
- </el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- >删除
- </el-button>
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total>0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <!-- 添加或修改月销售目标合并抽屉 -->
- <el-drawer :title="title" :visible.sync="open" direction="rtl" :before-close="handleClose" size="100%">
- <el-form ref="form" :model="form" :rules="rules" label-width="120px">
- <el-row :gutter="20">
- <el-col :span="6">
- <el-form-item label="编码" prop="code">
- <el-input v-model="form.code" placeholder="编码后端自动生成" disabled/>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="目标名称" prop="goalName">
- <el-input v-model="form.goalName" placeholder="目标名称后端自动生成" disabled/>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="单据日期" prop="documentDate">
- <el-date-picker clearable
- v-model="form.documentDate"
- type="date"
- value-format="yyyy-MM-dd"
- placeholder="请选择单据日期">
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="年度" prop="annual">
- <el-date-picker clearable
- v-model="form.annual"
- type="year"
- value-format="yyyy"
- placeholder="请输入年度">
- </el-date-picker>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col :span="6">
- <el-form-item label="月份" prop="monthly">
- <el-date-picker clearable
- v-model="form.monthly"
- type="month"
- value-format="yyyy-MM"
- placeholder="请输入月份">
- </el-date-picker>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="制单人" prop="creator">
- <el-popover-select-v2 v-model="form.creator" title="制单人" valueKey="name"
- referName="CONTACTS_PARAM"
- :dataMapping="{ creatorCode: 'code', creator: 'name'}"
- :source.sync="form" placeholder="请输入制单人">
- </el-popover-select-v2>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="部门" prop="dept">
- <el-popover-select-v2 v-model="form.dept" title="部门" valueKey="name"
- referName="DEPT_PARAM"
- :dataMapping="{ deptCode: 'code', dept: 'name'}"
- :source.sync="form" placeholder="请输入部门">
- </el-popover-select-v2>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="目标类型" prop="goalCategory">
- <el-select v-model="form.goalCategory" placeholder="请输入目标类型" @change="changeGoalCategoryForm" @keyup.enter.native="handleQuery">
- <el-option
- v-for="item in goalCategoryList"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row :gutter="20">
- <el-col :span="6">
- <el-form-item label="目标值合计" prop="goalSum">
- <el-input v-model="form.goalSum" placeholder="目标值合计自动计算" disabled/>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item v-if="form.goalCategory === '客户维度'" label="客户" prop="custom">
- <el-popover-select-v2 v-model="form.custom" title="客户" valueKey="name"
- referName="CUSTOMER_PARAM"
- :dataMapping="{custom: 'name'}"
- :source.sync="form" placeholder="请输入客户">
- </el-popover-select-v2>
- </el-form-item>
- <el-form-item v-if="form.goalCategory === '销售区域'" label="销售区域" prop="saleZone">
- <el-popover-select-v2 v-model="form.saleZone" title="销售区域" valueKey="name"
- referName="MK_SALESAREA_PARAM"
- :dataMapping="{saleZone: 'name'}"
- :source.sync="form" placeholder="请输入销售区域">
- </el-popover-select-v2>
- </el-form-item>
- <el-form-item v-if="form.goalCategory === '一级分类'" label="一级分类" prop="oneLevelClassify">
- <el-select v-model="form.oneLevelClassify" size="mini" clearable
- @focus="chooseTreeReferForMain('MATERIALCLASSIFY_PARAM', false, '一级物料分类')"
- style="width: 200px">
- <el-option v-for="item in classOptions" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- <el-form-item v-if="form.goalCategory === '二级分类'" label="二级分类" prop="custom">
- <el-select v-model="form.twoLevelClassify" size="mini" clearable
- @focus="chooseTreeReferForMain('MATERIALCLASSIFY_PARAM', false, '二级物料分类')"
- style="width: 200px">
- <el-option v-for="item in classOptions" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="6">
- <el-form-item label="单据状态" prop="documentStatus">
- <el-input v-model="form.documentStatus" placeholder="未提交" disabled/>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <div>
- <el-row :gutter="10" class="mb8" style="margin-left: 94%">
- <el-col :span="1.5">
- <el-button type="primary" plain icon="el-icon-folder-opened" size="mini" @click="clickMerge">合 并</el-button>
- </el-col>
- </el-row>
- <el-tabs v-model="activeName" @tab-click="getNewTwoArray">
- <el-tab-pane label="月销售目标合并明细" name="monthGoalMergeDetails">
- <el-table max-height="300" show-summary sum-text="小计" v-loading="loading" :data="monthGoalMergeDetailsList" @selection-change="handleSelectionChange">
- <el-table-column label="序号" type="index" width="70" align="center" fixed />
- <el-table-column label="销售组织" align="center" prop="saleOrg" width="180">
- <template slot-scope="scope">
- <el-popover-select-v2 v-model="monthGoalMergeDetailsList[scope.$index].saleOrg" title="销售组织" valueKey="name"
- referName="ORG_PARAM" disabled
- :dataMapping="{ saleOrgCode: 'code', saleOrg: 'name'}"
- :source.sync="monthGoalMergeDetailsList[scope.$index]" placeholder="请输入销售组织">
- </el-popover-select-v2>
- </template>
- </el-table-column>
- <el-table-column label="销售区域" align="center" prop="saleZone" width="180">
- <template slot-scope="scope">
- <el-popover-select-v2 v-model="monthGoalMergeDetailsList[scope.$index].saleZone" title="销售区域" valueKey="name"
- referName="MK_SALESAREA_PARAM" disabled
- :dataMapping="{ saleZoneCode: 'code', saleZone: 'name'}"
- :source.sync="monthGoalMergeDetailsList[scope.$index]" placeholder="请输入销售区域">
- </el-popover-select-v2>
- </template>
- </el-table-column>
- <el-table-column label="客户" align="center" prop="custom" width="180">
- <template slot-scope="scope">
- <el-popover-select-v2 v-model="monthGoalMergeDetailsList[scope.$index].custom" title="客户" valueKey="name"
- referName="CUSTOMER_PARAM" disabled
- :dataMapping="{ customCode: 'code', custom: 'name'}"
- :source.sync="monthGoalMergeDetailsList[scope.$index]" placeholder="请输入客户">
- </el-popover-select-v2>
- </template>
- </el-table-column>
- <el-table-column label="部门" align="center" prop="dept" width="180">
- <template slot-scope="scope">
- <el-popover-select-v2 v-model="monthGoalMergeDetailsList[scope.$index].dept" title="部门" valueKey="name"
- referName="DEPT_PARAM" disabled
- :dataMapping="{ deptCode: 'code', dept: 'name'}"
- :source.sync="monthGoalMergeDetailsList[scope.$index]" placeholder="请输入客户">
- </el-popover-select-v2>
- </template>
- </el-table-column>
- <el-table-column label="制单人" align="center" prop="creator" width="180">
- <template slot-scope="scope">
- <el-popover-select-v2 v-model="monthGoalMergeDetailsList[scope.$index].creator" title="负责人" valueKey="name"
- referName="CONTACTS_PARAM" disabled
- :dataMapping="{ creatorCode: 'code', creator: 'name'}"
- :source.sync="monthGoalMergeDetailsList[scope.$index]" placeholder="请输入负责人">
- </el-popover-select-v2>
- </template>
- </el-table-column>
- <el-table-column label="科室" align="center" prop="department" width="180">
- <template slot-scope="scope">
- <el-input v-model="monthGoalMergeDetailsList[scope.$index].department" placeholder="请输入科室" disabled></el-input>
- </template>
- </el-table-column>
- <el-table-column label="一级分类" align="center" prop="oneLevelClassify" width="220">
- <template slot-scope="scope">
- <el-select v-model="monthGoalMergeDetailsList[scope.$index].oneLevelClassify" size="mini" clearable
- @focus="chooseTreeReferForDetails('MATERIALCLASSIFY_PARAM', false, '一级物料分类', scope.$index)"
- style="width: 200px" disabled>
- <el-option v-for="item in classOptions" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </template>
- </el-table-column>
- <el-table-column label="二级分类" align="center" prop="twoLevelClassify" width="220">
- <template slot-scope="scope">
- <el-select v-model="monthGoalMergeDetailsList[scope.$index].twoLevelClassify" size="mini" clearable
- @focus="chooseTreeReferForDetails('MATERIALCLASSIFY_PARAM', false, '二级物料分类', scope.$index)"
- style="width: 200px" disabled>
- <el-option v-for="item in classOptions" :key="item.id" :label="item.name" :value="item.id" />
- </el-select>
- </template>
- </el-table-column>
- <el-table-column label="物料" align="center" prop="material" width="180">
- <template slot-scope="scope">
- <el-popover-select-v2 v-model="monthGoalMergeDetailsList[scope.$index].material" title="物料" valueKey="name"
- referName="MATERIAL_PARAM" disabled
- :dataMapping="{ materialCode: 'code', material: 'name'}"
- :source.sync="monthGoalMergeDetailsList[scope.$index]" placeholder="请输入物料">
- </el-popover-select-v2>
- </template>
- </el-table-column>
- <el-table-column label="月份" align="center" prop="monthly" width="250">
- <template slot-scope="scope">
- <el-date-picker disabled v-model="monthGoalMergeDetailsList[scope.$index].monthly" value-format="yyyy-MM" type="month" placeholder="选择月份">
- </el-date-picker>
- </template>
- </el-table-column>
- <el-table-column label="目标值" align="center" prop="goalValue" width="220">
- <template slot-scope="scope">
- <el-input-number @change="computeTotal" v-model="monthGoalMergeDetailsList[scope.$index].goalValue" :precision="2" :step="1" :min="0"></el-input-number>
- </template>
- </el-table-column>
- </el-table>
- </el-tab-pane>
- <el-tab-pane label="区域目标汇总(月)" name="zoneGoalSum">
- <el-table max-height="300" :data="zoneGoalSumList">
- <el-table-column label="序号" type="index" width="55" align="center" fixed />
- <el-table-column label="销售组织" align="center" prop="saleOrg" width="180">
- <template slot-scope="scope">
- <el-popover-select-v2 v-model="zoneGoalSumList[scope.$index].saleOrg" title="销售组织" valueKey="name"
- referName="ORG_PARAM" disabled
- :dataMapping="{ saleOrgCode: 'code', saleOrg: 'name'}"
- :source.sync="zoneGoalSumList[scope.$index]" placeholder="请输入销售组织">
- </el-popover-select-v2>
- </template>
- </el-table-column>
- <el-table-column label="销售区域" align="center" prop="saleZone" width="180">
- <template slot-scope="scope">
- <el-popover-select-v2 v-model="zoneGoalSumList[scope.$index].saleZone" title="销售区域" valueKey="name"
- referName="ORG_PARAM" disabled
- :dataMapping="{ saleZoneCode: 'code', saleZone: 'name'}"
- :source.sync="zoneGoalSumList[scope.$index]" placeholder="请输入销售区域">
- </el-popover-select-v2>
- </template>
- </el-table-column>
- <el-table-column label="月份" align="center" prop="monthly" width="250">
- <template slot-scope="scope">
- <el-date-picker disabled v-model="zoneGoalSumList[scope.$index].monthly" value-format="yyyy-MM" type="month" placeholder="选择月份">
- </el-date-picker>
- </template>
- </el-table-column>
- <el-table-column label="目标值" align="center" prop="goalValue" width="220">
- <template slot-scope="scope">
- <el-input-number @change="computeTotal" v-model="zoneGoalSumList[scope.$index].goalValue" :precision="2" :step="1" :min="0" disabled></el-input-number>
- </template>
- </el-table-column>
- </el-table>
- </el-tab-pane>
- <el-tab-pane label="客户目标汇总(月)" name="customGoalSum">
- <el-table max-height="300" :data="customGoalSumList">
- <el-table-column label="序号" type="index" width="55" align="center" fixed />
- <el-table-column label="销售组织" align="center" prop="saleOrg" width="180">
- <template slot-scope="scope">
- <el-popover-select-v2 v-model="customGoalSumList[scope.$index].saleOrg" title="销售组织" valueKey="name"
- referName="ORG_PARAM" disabled
- :dataMapping="{ saleOrgCode: 'code', saleOrg: 'name'}"
- :source.sync="customGoalSumList[scope.$index]" placeholder="请输入销售组织">
- </el-popover-select-v2>
- </template>
- </el-table-column>
- <el-table-column label="销售区域" align="center" prop="saleZone" width="180">
- <template slot-scope="scope">
- <el-popover-select-v2 v-model="customGoalSumList[scope.$index].saleZone" title="销售区域" valueKey="name"
- referName="ORG_PARAM" disabled
- :dataMapping="{ saleZoneCode: 'code', saleZone: 'name'}"
- :source.sync="customGoalSumList[scope.$index]" placeholder="请输入销售区域">
- </el-popover-select-v2>
- </template>
- </el-table-column>
- <el-table-column label="客户" align="center" prop="custom" width="180">
- <template slot-scope="scope">
- <el-popover-select-v2 v-model="customGoalSumList[scope.$index].custom" title="客户" valueKey="name"
- referName="CUSTOMER_PARAM" disabled
- :dataMapping="{ customCode: 'code', custom: 'name'}"
- :source.sync="customGoalSumList[scope.$index]" placeholder="请输入客户">
- </el-popover-select-v2>
- </template>
- </el-table-column>
- <el-table-column label="月份" align="center" prop="monthly" width="250">
- <template slot-scope="scope">
- <el-date-picker disabled v-model="customGoalSumList[scope.$index].monthly" value-format="yyyy-MM" type="month" placeholder="选择月份">
- </el-date-picker>
- </template>
- </el-table-column>
- <el-table-column label="目标值" align="center" prop="goalValue" width="220">
- <template slot-scope="scope">
- <el-input-number @change="computeTotal" v-model="customGoalSumList[scope.$index].goalValue" :precision="2" :step="1" :min="0" disabled></el-input-number>
- </template>
- </el-table-column>
- </el-table>
- </el-tab-pane>
- </el-tabs>
- <div slot="footer" class="dialog-footer" style="margin-left: 88%; margin-top: 1%">
- <el-button type="primary" @click="submitForm" size="medium">确 定</el-button>
- <el-button @click="cancel" size="medium">返 回</el-button>
- </div>
- </div>
- </el-drawer>
- <!-- 用户导入对话框 -->
- <el-dialog :title="upload.title" :visible.sync="upload.open" width="400px" append-to-body>
- <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"
- :auto-upload="false"
- drag
- >
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
- <div class="el-upload__tip text-center" slot="tip">
- <div class="el-upload__tip" slot="tip">
- <el-checkbox v-model="upload.updateSupport" /> 是否更新已经存在的用户数据
- </div>
- <span>仅允许导入xls、xlsx格式文件。</span>
- <el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline;" @click="importTemplate">下载模板</el-link>
- </div>
- </el-upload>
- <div slot="footer">
- <el-button type="primary" @click="submitFileForm">确 定</el-button>
- <el-button @click="upload.open = false">取 消</el-button>
- </div>
- </el-dialog>
- <TreeRefers ref="treeQuery" @doSubmit="selectionsToInputForQuery" :single="true"/>
- <TreeRefers ref="treeMain" @doSubmit="selectionsToInputForMain" :single="true"/>
- <TreeRefers ref="treeDetails" @doSubmit="selectionsToInputForDetails" :single="true"/>
- </div>
- </template>
- <script>
- import {
- listMonthGoalMerge,
- getMonthGoalMerge,
- delMonthGoalMerge,
- addMonthGoalMerge,
- updateMonthGoalMerge
- } from "@/api/business/spd/goal_management/monthGoalMerge";
- import {
- getMonthGoalMergeDetails,
- delMonthGoalMergeDetails,
- mergeMonthSaleMergeDetails
- } from "@/api/business/spd/goal_management/monthGoalMergeDetails"
- import { getToken } from "@/utils/auth";
- // 树形参照
- import TreeRefers from '@/components/Refers/treeRefer.vue'
- import ElPopoverSelectV2 from "@/components/popover-select-v2"
- export default {
- name: "MonthGoalMerge",
- components: {
- TreeRefers, ElPopoverSelectV2
- },
- data() {
- return {
- // 遮罩层
- loading: true,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: false,
- // 总条数
- total: 0,
- // 月销售目标合并表格数据
- monthGoalMergeList: [],
- monthGoalMergeDetailsList: [],
- zoneGoalSumList: [],
- customGoalSumList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- code: null,
- goalName: null,
- documentDate: null,
- annual: null,
- monthly: null,
- customCode: null,
- custom: null,
- creatorCode: null,
- creator: null,
- deptCode: null,
- dept: null,
- goalCategory: null,
- goalSum: null,
- documentStatus: null,
- saleZoneCode: null,
- saleZone: null,
- oneLevelClassifyCode: null,
- oneLevelClassify: null,
- twoLevelClassifyCode: null,
- twoLevelClassify: null,
- params: { beginTime: null, endTime: null }
- },
- documentDateRange: null,
- pickerOptions: {
- shortcuts: [{
- text: '最近一周',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
- picker.$emit('pick', [start, end]);
- }
- }, {
- text: '最近一个月',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
- picker.$emit('pick', [start, end]);
- }
- }, {
- text: '最近三个月',
- onClick(picker) {
- const end = new Date();
- const start = new Date();
- start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
- picker.$emit('pick', [start, end]);
- }
- }]
- },
- // 表单参数
- form: {
- id: null,
- code: null,
- goalName: null,
- documentDate: null,
- annual: null,
- monthly: null,
- customCode: null,
- custom: null,
- creatorCode: null,
- creator: null,
- deptCode: null,
- dept: null,
- goalCategory: null,
- goalSum: null,
- documentStatus: null,
- saleZoneCode: null,
- saleZone: null,
- oneLevelClassifyCode: null,
- oneLevelClassify: null,
- twoLevelClassifyCode: null,
- twoLevelClassify: null,
- monthMergeDetailsList: null,
- oldMonthMergeDetailsList: null
- },
- formDetails: {
- id: null,
- code: null,
- saleOrg: null,
- saleZone: null,
- custom: null,
- dept: null,
- creator: null,
- department: null,
- oneLevelClassifyCode: null,
- oneLevelClassify: null,
- twoLevelClassifyCode: null,
- twoLevelClassify: null,
- materialCode: null,
- material: null,
- monthly: null,
- goalValue: null
- },
- // 表单校验
- rules: {
- documentDate: [{ required: true, message: '单据日期不能为空', trigger: 'blur' }],
- annual: [{ required: true, message: '年度不能为空', trigger: 'blur' }],
- monthly: [{ required: true, message: '月份不能为空', trigger: 'blur' }],
- creator: [{ required: true, message: '制单人不能为空', trigger: 'blur' }],
- dept: [{ required: true, message: '部门不能为空', trigger: 'blur' }],
- goalCategory: [{ required: true, message: '目标类型不能为空', trigger: 'blur' }],
- custom: [],
- saleZone: [],
- oneLevelClassify: [],
- twoLevelClassify: []
- },
- // 目标类型列表
- goalCategoryList: [
- { value: '客户维度', label: '客户维度' },
- { value: '销售区域', label: '销售区域' },
- { value: '一级分类', label: '一级分类' },
- { value: '二级分类', label: '二级分类' }
- ],
- // 树形参照
- referCondition: { type: '', isPage: true, title: '', index: null },
- classOptions: [],
- activeName: 'monthGoalMergeDetails',
- // 用户导入参数
- upload: {
- // 是否显示弹出层(用户导入)
- open: false,
- // 弹出层标题(用户导入)
- title: "",
- // 是否禁用上传
- isUploading: false,
- // 是否更新已经存在的用户数据
- updateSupport: 0,
- // 设置上传的请求头部
- headers: { Authorization: "Bearer " + getToken() },
- // 上传的地址
- url: process.env.VUE_APP_BASE_API + "/goal_management/annualSaleGoalMerge/importData"
- }
- };
- },
- created() {
- this.getList();
- },
- methods: {
- /** 查询月销售目标合并列表 */
- getList() {
- this.loading = true;
- listMonthGoalMerge(this.queryParams).then(response => {
- this.monthGoalMergeList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- getListDetails() {
- this.loading = true;
- getMonthGoalMergeDetails(this.form.id).then(response => {
- this.monthGoalMergeDetailsList = response.data;
- this.computeTotal()
- this.form.monthMergeDetailsList = this.monthGoalMergeDetailsList
- updateMonthGoalMerge(this.form).then(response => {})
- this.loading = false;
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- id: null,
- code: null,
- goalName: null,
- documentDate: null,
- annual: null,
- monthly: null,
- customCode: null,
- custom: null,
- creatorCode: null,
- creator: null,
- deptCode: null,
- dept: null,
- goalCategory: null,
- goalSum: null,
- documentStatus: null,
- saleZoneCode: null,
- saleZone: null,
- oneLevelClassifyCode: null,
- oneLevelClassify: null,
- twoLevelClassifyCode: null,
- twoLevelClassify: null,
- monthMergeDetailsList: null,
- oldMonthMergeDetailsList: null
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.queryParams = {
- pageNum: 1,
- pageSize: 10,
- code: null,
- goalName: null,
- documentDate: null,
- annual: null,
- monthly: null,
- customCode: null,
- custom: null,
- creatorCode: null,
- creator: null,
- deptCode: null,
- dept: null,
- goalCategory: null,
- goalSum: null,
- documentStatus: null,
- saleZoneCode: null,
- saleZone: null,
- oneLevelClassifyCode: null,
- oneLevelClassify: null,
- twoLevelClassifyCode: null,
- twoLevelClassify: null,
- params: { beginTime: null, endTime: null }
- }
- this.documentDateRange = null
- this.resetForm("queryForm");
- this.handleQuery();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map(item => item.id)
- this.single = selection.length !== 1
- this.multiple = !selection.length
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.monthGoalMergeDetailsList = []
- this.customGoalSumList = []
- this.zoneGoalSumList = []
- this.activeName = 'monthGoalMergeDetails'
- this.open = true;
- this.title = "添加--月销售目标合并";
- this.form.documentDate = new Date().getFullYear().toString() + '-' + (new Date().getMonth() + 1).toString().padStart(2, '0') + '-' + new Date().getDate().toString().padStart(2, '0')
- this.form.annual = new Date().getFullYear().toString()
- this.form.monthly = new Date().getFullYear().toString() + '-' + (new Date().getMonth() + 1).toString().padStart(2, '0')
- this.form.creator = this.$store.state.user.nickName
- this.form.dept = this.$store.state.user.deptName
- },
- handleAddDetails() {
- let list = {
- id: null,
- code: null,
- saleOrg: null,
- saleZone: null,
- custom: null,
- dept: null,
- creator: null,
- oneLevelClassifyCode: null,
- oneLevelClassify: null,
- twoLevelClassifyCode: null,
- twoLevelClassify: null,
- materialCode: null,
- material: null,
- department: null,
- num: null,
- monthly: null,
- goalValue: null
- }
- this.monthGoalMergeDetailsList.push(list)
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- this.customGoalSumList = []
- this.zoneGoalSumList = []
- this.activeName = 'monthGoalMergeDetails'
- const id = row.id || this.ids
- getMonthGoalMerge(id).then(response => {
- this.form = response.data;
- this.monthGoalMergeDetailsList = this.form.monthMergeDetailsList
- this.open = true;
- this.title = "修改--月销售目标合并";
- });
- },
- // 复制按钮操作
- handleCopy(id) {
- this.reset()
- this.monthGoalMergeDetailsList = []
- this.customGoalSumList = []
- this.zoneGoalSumList = []
- this.activeName = 'monthGoalMergeDetails'
- getMonthGoalMerge(id).then(response => {
- this.form = response.data
- this.form.id = null
- this.form.code = null
- this.title = "添加--月销售目标合并";
- this.form.documentDate = new Date().getFullYear().toString() + '-' + (new Date().getMonth() + 1).toString().padStart(2, '0') + '-' + new Date().getDate().toString().padStart(2, '0')
- this.form.annual = new Date().getFullYear().toString()
- this.form.monthly = new Date().getFullYear().toString() + '-' + (new Date().getMonth() + 1).toString().padStart(2, '0')
- this.form.goalSum = 0
- this.open = true
- this.changeGoalCategoryForm()
- })
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- if (this.form.id !== null) {
- this.form.monthMergeDetailsList = JSON.parse(JSON.stringify(this.monthGoalMergeDetailsList))
- console.log(this.form);
- updateMonthGoalMerge(this.form).then(response => {
- this.$modal.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- });
- } else {
- this.form.documentStatus = '未提交'
- this.form.monthMergeDetailsList = this.monthGoalMergeDetailsList
- console.log(this.form);
- addMonthGoalMerge(this.form).then(response => {
- this.$modal.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const ids = row.id || this.ids;
- this.$modal.confirm('是否确认删除月销售目标合并编号为"' + ids + '"的数据项?').then(function () {
- return delMonthGoalMerge(ids);
- }).then(() => {
- this.getList();
- this.$modal.msgSuccess("删除成功");
- }).catch(() => {
- });
- },
- handleDeleteDetails(index, row) {
- if (this.form.id === null) {
- this.monthGoalMergeDetailsList.splice(index, 1)
- this.computeTotal()
- } else {
- if (row.id !== null) {
- this.$modal.confirm('是否确认删除月销售目标合并明细编号为"' + row.id + '"的数据项?').then(function () {
- return delMonthGoalMergeDetails(row.id);
- }).then(() => {
- this.getListDetails();
- this.$modal.msgSuccess("删除成功");
- }).catch(() => {
- });
- } else {
- this.monthGoalMergeDetailsList.splice(index, 1)
- this.$message.success('删除成功')
- this.computeTotal()
- }
- }
- },
- /** 导出按钮操作 */
- handleExport() {
- this.download('goal_management/monthGoalMerge/export', {
- ...this.queryParams
- }, `monthGoalMerge${new Date().getTime()}.xlsx`)
- },
- handleExportDetails() {
- this.download('goal_management/monthGoalMergeDetails/export', {
- ...this.queryParams
- }, `monthSaleMergeDetails_${new Date().getTime()}.xlsx`)
- },
- // 树形参照
- chooseTreeReferForQuery(type, isPage, title) {
- this.referCondition.type = type
- this.referCondition.isPage = isPage
- this.referCondition.title = title
- this.$refs.treeQuery.init(this.referCondition)
- },
- chooseTreeReferForMain(type, isPage, title) {
- this.referCondition.type = type
- this.referCondition.isPage = isPage
- this.referCondition.title = title
- this.$refs.treeMain.init(this.referCondition)
- },
- chooseTreeReferForDetails(type, isPage, title, index) {
- this.referCondition.type = type
- this.referCondition.isPage = isPage
- this.referCondition.title = title
- this.referCondition.index = index
- this.$refs.treeDetails.init(this.referCondition)
- },
- selectionsToInputForQuery(selection) {
- this.classOptions.push(selection)
- if (this.referCondition.title === '一级物料分类') {
- if (selection.code.length !== 1) {
- return this.$message.info('请在一级分类下选择')
- }
- this.queryParams.oneLevelClassifyCode = selection.code
- this.queryParams.oneLevelClassify = selection.name
- } else if (this.referCondition.title === '二级物料分类') {
- if (selection.code.length !== 4) {
- return this.$message.info('请在二级分类下选择')
- }
- this.queryParams.twoLevelClassifyCode = selection.code
- this.queryParams.twoLevelClassify = selection.name
- }
- },
- selectionsToInputForMain(selection) {
- this.classOptions.push(selection)
- if (this.referCondition.title === '一级物料分类') {
- if (selection.code.length !== 1) {
- return this.$message.info('请在一级分类下选择')
- }
- this.form.oneLevelClassifyCode = selection.code
- this.form.oneLevelClassify = selection.name
- } else if (this.referCondition.title === '二级物料分类') {
- if (selection.code.length !== 4) {
- return this.$message.info('请在二级分类下选择')
- }
- this.form.twoLevelClassifyCode = selection.code
- this.form.twoLevelClassify = selection.name
- }
- },
- selectionsToInputForDetails(selection) {
- this.classOptions.push(selection)
- if (this.referCondition.title === '一级物料分类') {
- if (selection.code.length !== 1) {
- return this.$message.info('请在一级分类中选择')
- }
- if (selection.code !== this.monthGoalMergeDetailsList[this.referCondition.index].oneLevelClassifyCode) {
- this.monthGoalMergeDetailsList[this.referCondition.index].twoLevelClassifyCode = null
- this.monthGoalMergeDetailsList[this.referCondition.index].twoLevelClassify = null
- }
- this.monthGoalMergeDetailsList[this.referCondition.index].oneLevelClassifyCode = selection.code
- this.monthGoalMergeDetailsList[this.referCondition.index].oneLevelClassify = selection.name
- } else if (this.referCondition.title === '二级物料分类') {
- if (selection.code.length !== 4) {
- return this.$message.info('请在二级分类中选择')
- } else if (selection.code[0] !== this.monthGoalMergeDetailsList[this.referCondition.index].oneLevelClassifyCode) {
- return this.$message.error('所选择的二级物料分类不属于一级分类')
- }
- this.monthGoalMergeDetailsList[this.referCondition.index].twoLevelClassifyCode = selection.code
- this.monthGoalMergeDetailsList[this.referCondition.index].twoLevelClassify = selection.name
- }
- },
- // 改变查询表单的目标分类
- changeGoalCategoryQuery() {
- let condition = this.queryParams.goalCategory
- if (condition === null) {
- this.queryParams.custom = null
- this.queryParams.customCode = null
- this.queryParams.saleZone = null
- this.queryParams.saleZoneCode = null
- this.queryParams.oneLevelClassify = null
- this.queryParams.oneLevelClassifyCode = null
- this.queryParams.twoLevelClassify = null
- this.queryParams.twoLevelClassifyCode = null
- } else if (condition === '客户维度') {
- this.queryParams.saleZone = null
- this.queryParams.saleZoneCode = null
- this.queryParams.oneLevelClassify = null
- this.queryParams.oneLevelClassifyCode = null
- this.queryParams.twoLevelClassify = null
- this.queryParams.twoLevelClassifyCode = null
- } else if (condition === '销售区域') {
- this.queryParams.custom = null
- this.queryParams.customCode = null
- this.queryParams.oneLevelClassify = null
- this.queryParams.oneLevelClassifyCode = null
- this.queryParams.twoLevelClassify = null
- this.queryParams.twoLevelClassifyCode = null
- } else if (condition === '一级分类') {
- this.queryParams.custom = null
- this.queryParams.customCode = null
- this.queryParams.saleZone = null
- this.queryParams.saleZoneCode = null
- this.queryParams.twoLevelClassify = null
- this.queryParams.twoLevelClassifyCode = null
- } else if (condition === '二级分类') {
- this.queryParams.custom = null
- this.queryParams.customCode = null
- this.queryParams.saleZone = null
- this.queryParams.saleZoneCode = null
- this.queryParams.oneLevelClassify = null
- this.queryParams.oneLevelClassifyCode = null
- }
- },
- changeGoalCategoryForm() {
- let condition = this.form.goalCategory
- if (condition === null) {
- this.form.custom = null
- this.form.customCode = null
- this.form.saleZone = null
- this.form.saleZoneCode = null
- this.form.oneLevelClassify = null
- this.form.oneLevelClassifyCode = null
- this.form.twoLevelClassify = null
- this.form.twoLevelClassifyCode = null
- this.rules.custom = []
- this.rules.saleZone = []
- this.rules.oneLevelClassify = []
- this.rules.twoLevelClassify = []
- } else if (condition === '客户维度') {
- this.form.saleZone = null
- this.form.saleZoneCode = null
- this.form.oneLevelClassify = null
- this.form.oneLevelClassifyCode = null
- this.form.twoLevelClassify = null
- this.form.twoLevelClassifyCode = null
- this.rules.custom = [{ required: true, message: '客户不能为空', trigger: 'blur' }]
- this.rules.saleZone = []
- this.rules.oneLevelClassify = []
- this.rules.twoLevelClassify = []
- } else if (condition === '销售区域') {
- this.form.custom = null
- this.form.customCode = null
- this.form.oneLevelClassify = null
- this.form.oneLevelClassifyCode = null
- this.form.twoLevelClassify = null
- this.form.twoLevelClassifyCode = null
- this.rules.custom = []
- this.rules.saleZone = [{ required: true, message: '销售区域不能为空', trigger: 'blur' }]
- this.rules.oneLevelClassify = []
- this.rules.twoLevelClassify = []
- } else if (condition === '一级分类') {
- this.form.custom = null
- this.form.customCode = null
- this.form.saleZone = null
- this.form.saleZoneCode = null
- this.form.twoLevelClassify = null
- this.form.twoLevelClassifyCode = null
- this.rules.custom = []
- this.rules.saleZone = []
- this.rules.oneLevelClassify = [{ required: true, message: '一级分类不能为空', trigger: 'blur' }]
- this.rules.twoLevelClassify = []
- } else if (condition === '二级分类') {
- this.form.custom = null
- this.form.customCode = null
- this.form.saleZone = null
- this.form.saleZoneCode = null
- this.form.oneLevelClassify = null
- this.form.oneLevelClassifyCode = null
- this.rules.custom = []
- this.rules.saleZone = []
- this.rules.oneLevelClassify = []
- this.rules.twoLevelClassify = [{ required: true, message: '二级分类不能为空', trigger: 'blur' }]
- }
- },
- // 关闭抽屉
- handleClose(done) {
- this.$confirm('确认关闭?')
- .then(_ => {
- done();
- this.resetQuery()
- })
- .catch(_ => {});
- },
- // 复制明细
- handleCopyDetails(row) {
- let list = {
- id: null,
- code: row.code,
- saleOrg: row.saleOrg,
- saleZone: row.saleZone,
- custom: row.custom,
- dept: row.dept,
- creator: row.creator,
- oneLevelClassifyCode: row.oneLevelClassifyCode,
- oneLevelClassify: row.oneLevelClassify,
- twoLevelClassifyCode: row.twoLevelClassifyCode,
- twoLevelClassify: row.twoLevelClassify,
- materialCode: row.materialCode,
- material: row.material,
- department: row.department,
- num: row.num,
- monthly: row.monthly,
- goalValue: row.goalValue
- }
- this.monthGoalMergeDetailsList.push(list)
- this.computeTotal()
- },
- // 计算主表合计
- computeTotal() {
- let list = this.monthGoalMergeDetailsList
- let sum = 0
- for (const listElement of list) {
- sum = (sum * 1000000 + listElement.goalValue * 1000000) / 1000000
- }
- this.form.goalSum = sum
- },
- // 合并数据
- clickMerge() {
- if (this.form.id !== null) {
- this.form.oldMonthMergeDetailsList = JSON.parse(JSON.stringify(this.monthGoalMergeDetailsList))
- }
- if (this.activeName !== 'monthGoalMergeDetails') {
- return this.$message.error('当前标签不是月销售目标合并明细')
- }
- let query = JSON.parse(JSON.stringify(this.form))
- query.monthGoalMergeDetailsList = []
- if (query.goalCategory === null || query.goalCategory === '') {
- return this.$message.error('请输入目标分类')
- } else if (query.goalCategory === '销售区域') {
- if (query.saleZone === null) {
- return this.$message.error('请输入销售区域')
- }
- } else if (query.goalCategory === '一级分类') {
- if (query.oneLevelClassify === null) {
- return this.$message.error('请输入一级分类')
- }
- } else if (query.goalCategory === '二级分类') {
- if (query.twoLevelClassify === null) {
- return this.$message.error('请输入二级分类')
- }
- } else if (query.goalCategory === '客户维度') {
- if (query.custom === null) {
- return this.$message.error('请输入客户')
- }
- }
- mergeMonthSaleMergeDetails(query).then(response => {
- console.log(response);
- if (response.data.monthGoalMergeDetails.length > 0) {
- this.monthGoalMergeDetailsList = response.data.monthGoalMergeDetails
- this.computeTotal()
- } else {
- return this.$message.warning('未查到相关数据')
- }
- })
- },
- setBeginAndEnd() {
- let array = this.documentDateRange
- if (array !== null) {
- this.queryParams.params.beginTime = array[0]
- this.queryParams.params.endTime = array[1]
- } else {
- this.queryParams.params.beginTime = null
- this.queryParams.params.endTime = null
- }
- },
- handleCommand(command) {
- // 执行对应的功能
- if (command === 'importModel') {
- // 执行选项1的功能
- console.log('导入模板');
- } else if (command === 'import') {
- // 执行选项2的功能
- console.log('导入');
- } else if (command === 'export') {
- console.log('导出主表');
- this.handleExport()
- } else if (command === 'exportDetails') {
- console.log('导出明细');
- this.handleExportDetails()
- }
- },
- // 获得区域目标汇总or客户目标汇总
- getNewTwoArray() {
- let arr = JSON.parse(JSON.stringify(this.monthGoalMergeDetailsList))
- // 如果子表标签是annualSaleGoalMergeDetails 或者 主表的目标分类是“销售区域”
- if (this.activeName === 'monthGoalMergeDetails' || this.form.goalCategory !== '销售区域') {
- this.zoneGoalSumList = null
- this.customGoalSumList = null
- return
- }
- // 根据某三个属性进行合并并相加totalGoal的函数
- const mergeAndSumTotalGoal = (array) => {
- return Array.from(array.reduce((map, obj) => {
- let key = null
- if (this.activeName === 'zoneGoalSum') {
- key = `${obj.saleOrg}-${obj.saleZone}-${obj.monthly}`
- } else if (this.activeName === 'customerGoalSum') {
- key = `${obj.saleOrg}-${obj.saleZone}-${obj.custom}-${obj.monthly}`
- }
- if (map.has(key)) {
- const existingObj = map.get(key)
- existingObj.goalValue += obj.goalValue
- } else {
- map.set(key, { ...obj })
- }
- return map
- }, new Map()).values())
- }
- // 调用合并函数
- const mergedArray = mergeAndSumTotalGoal(arr)
- if (this.activeName === 'zoneGoalSum') {
- this.zoneGoalSumList = mergedArray
- } else if (this.activeName === 'customGoalSum') {
- this.customGoalSumList = mergedArray
- }
- },
- /** 导入按钮操作 */
- handleImport() {
- this.upload.open = true;
- this.upload.title = "月销售目标合并导入";
- this.upload.url = process.env.VUE_APP_BASE_API + "goal_management/monthGoalMerge/importData"
- },
- /** 下载模板操作 */
- importTemplate() {
- this.download('goal_management/monthGoalMerge/importTemplate', {
- }, `monthGoalMerge_${new Date().getTime()}.xlsx`)
- },
- // 文件上传中处理
- handleFileUploadProgress(event, file, fileList) {
- this.upload.isUploading = true;
- },
- // 文件上传成功处理
- handleFileSuccess(response, file, fileList) {
- console.log(response);
- this.upload.open = false;
- this.upload.isUploading = false;
- this.$refs.upload.clearFiles();
- this.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + "</div>", "导入结果", { dangerouslyUseHTMLString: true });
- this.getList();
- },
- // 提交上传文件
- submitFileForm() {
- this.$refs.upload.submit();
- }
- }
- };
- </script>
|