123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
- <el-form-item label="编码" prop="code">
- <el-input v-model="queryParams.code" placeholder="请输入编码" clearable @keyup.enter.native="handleQuery"/>
- </el-form-item>
- <el-form-item label="目标名称" prop="goalName">
- <el-input v-model="queryParams.goalName" placeholder="请输入目标名称" clearable @keyup.enter.native="handleQuery"/>
- </el-form-item>
- <el-form-item label="单据日期" prop="documentDate">
- <el-date-picker
- v-model="documentDateRange"
- @change="setBeginAndEnd"
- type="daterange"
- align="right"
- unlink-panels
- 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-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-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-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-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-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-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-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="DEPT_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-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['goal_management:monthGoalMerge:add']"
- >新增
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- plain
- icon="el-icon-delete"
- size="mini"
- :disabled="multiple"
- @click="handleDelete"
- v-hasPermi="['goal_management:monthGoalMerge:remove']"
- >删除
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="el-icon-grape"
- size="mini"
- :disabled="multiple"
- v-hasPermi="['goal_management:annualSaleGoal:submit']"
- >提交
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-dropdown @command="handleCommand">
- <el-button type="primary" size="mini" plain icon="el-icon-upload">
- 导入<i class="el-icon-arrow-down el-icon--right"></i>
- </el-button>
- <el-dropdown-menu slot="dropdown">
- <el-dropdown-item command="importModel">导入模板</el-dropdown-item>
- <el-dropdown-item command="import">导入</el-dropdown-item>
- </el-dropdown-menu>
- </el-dropdown>
- </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" class-name="small-padding fixed-width">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-edit"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['goal_management:monthGoalMerge:edit']"
- >修改
- </el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDelete(scope.row)"
- v-hasPermi="['goal_management:monthGoalMerge:remove']"
- >删除
- </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="{ customCode: 'code', 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.saleZoneCode" title="销售区域" valueKey="name"
- referName="ORG_PARAM"
- :dataMapping="{ saleZoneCode: 'code', 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="操作">
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <!-- <el-col :span="1.5">
- <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAddDetails">增 行</el-button>
- </el-col>-->
- <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">
- <el-tab-pane label="月销售目标合并明细" name="monthGoalMergeDetails">
- <el-table v-loading="loading" :data="monthGoalMergeDetailsList" @selection-change="handleSelectionChange">
- <el-table-column type="selection" 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="monthGoalMergeDetailsList[scope.$index].saleOrg" title="销售组织" valueKey="name"
- referName="CUSTOMER_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="CUSTOMER_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="totalGoal" 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-column label="操作" align="center" class-name="small-padding fixed-width" width="120px" fixed="right">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleDeleteDetails(scope.$index, scope.row)"
- >删除</el-button>
- <el-button
- size="mini"
- type="text"
- icon="el-icon-delete"
- @click="handleCopyDetails(scope.row)"
- >复制</el-button>
- </template>
- </el-table-column>-->
- </el-table>
- </el-tab-pane>
- </el-tabs>
- </el-drawer>
- <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 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: true,
- // 总条数
- total: 0,
- // 月销售目标合并表格数据
- monthGoalMergeList: [],
- monthGoalMergeDetailsList: [],
- // 弹出层标题
- 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
- },
- 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'
- };
- },
- 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
- };
- 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.open = true;
- this.title = "添加月销售目标合并";
- },
- 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();
- const id = row.id || this.ids
- getMonthGoalMerge(id).then(response => {
- this.form = response.data;
- this.monthGoalMergeDetailsList = this.form.monthMergeDetailsList
- this.open = true;
- this.title = "修改月销售目标合并";
- });
- },
- /** 提交按钮 */
- submitForm() {
- this.$refs["form"].validate(valid => {
- if (valid) {
- if (this.form.id !== null) {
- this.form.monthMergeDetailsList = this.monthGoalMergeDetailsList
- 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() {
- let classify = this.form.goalCategory
- let classifyValue;
- if (classify === null || classify === '') {
- return this.$message.error('请输入目标分类')
- } else if (classify === '销售区域') {
- classifyValue = this.form.saleZone
- if (classifyValue === null) {
- return this.$message.error('请输入销售区域')
- }
- } else if (classify === '一级分类') {
- classifyValue = this.form.oneLevelClassify
- if (classifyValue === null) {
- return this.$message.error('请输入一级分类')
- }
- } else if (classify === '二级分类') {
- classifyValue = this.form.twoLevelClassify
- if (classifyValue === null) {
- return this.$message.error('请输入二级分类')
- }
- } else if (classify === '客户维度') {
- classifyValue = this.form.custom
- if (classifyValue === null) {
- return this.$message.error('请输入客户')
- }
- }
- let query = { classify: classify, classifyValue: classifyValue }
- mergeMonthSaleMergeDetails(query).then(response => {
- console.log(response);
- this.monthGoalMergeDetailsList = response.data.monthGoalMergeDetails
- this.computeTotal()
- })
- },
- setBeginAndEnd() {
- let array = this.documentDateRange
- if (array !== null) {
- this.queryParams.params.beginTime = array[0]
- this.queryParams.params.endTime = array[1]
- } else {
- this.queryParams.beginTime = null
- this.queryParams.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()
- }
- }
- }
- };
- </script>
|