123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500 |
- <template>
- <a-card size="small" :bordered="false" class="shortageStatisticsCList-wrap">
- <!-- 搜索条件 -->
- <div class="table-page-search-wrapper">
- <a-form-model
- id="priceDifferenceDetailReport-form"
- layout="inline"
- ref="ruleForm"
- :model="queryParam"
- :rules="rules"
- @keyup.enter.native="$refs.table.refresh(true)">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-model-item label="日期" prop="time">
- <rangeDate ref="rangeDate" :value="queryParam.time" @change="dateChange" />
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="单号">
- <a-input placeholder="请输入单号" />
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="客户名称">
- <custList ref="custList" id="shortageStatisticsCList-buyerSn" @change="custChange"></custList>
- </a-form-model-item>
- </a-col>
- <template v-if="advanced">
- <a-col :md="6" :sm="24">
- <a-form-model-item label="客户类型">
- <custList ref="custList" id="shortageStatisticsCList-buyerSn" @change="custChange"></custList>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="品牌类别">
- <a-select placeholder="选择品牌类别">
- </a-select>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="产品品牌">
- <ProductBrand id="productInfoList-productBrandSn" v-model="queryParam.brandSn"></ProductBrand>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="二级品类">
- <ProductType id="productInfoList-productType" v-model="productType" @change="changeProductType"></ProductType>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="所在区域">
- <subarea id="shortageStatisticsCList-subarea" v-model="queryParam.subareaSn"></subarea>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="省级区域" prop="provinceSn">
- <a-select id="supplierInfoEdit-provinceSn" @change="getCityList" v-model="queryParam.provinceSn" placeholder="请选择省">
- <a-select-option v-for="item in addrProvinceList" :value="item.areaSn" :key="item.areaSn + 'a'">{{ item.name }}</a-select-option>
- </a-select>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="类型">
- <subarea id="shortageStatisticsCList-subarea" v-model="queryParam.subareaSn"></subarea>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="">
- <a-checkbox>
- 盘点区间日期
- </a-checkbox>
- </a-form-model-item>
- </a-col>
- </template>
- <a-col :md="6" :sm="24">
- <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="shortageStatisticsCList-refresh">查询</a-button>
- <a-button style="margin-left: 8px" @click="resetSearchForm" :disabled="disabled" id="shortageStatisticsCList-reset">重置</a-button>
- <a @click="advanced=!advanced" style="margin-left: 8px">
- {{ advanced ? '收起' : '展开' }}
- <a-icon :type="advanced ? 'up' : 'down'"/>
- </a>
- </a-col>
- </a-row>
- </a-form-model>
- </div>
- <!-- 列表 -->
- <s-table
- class="sTable"
- ref="table"
- size="small"
- :rowKey="(record) => record.id"
- :columns="columns"
- :data="loadData"
- :scroll="{ x: 2250, y: tableHeight }"
- bordered>
- <template slot="footer" slot-scope="currentPageData">
- <a-row :gutter="15">
- <a-col :md="4" :sm="24">
- 分公司金额:11175.40
- </a-col>
- <a-col :md="4" :sm="24">
- 加盟商金额:12182.40
- </a-col>
- <a-col :md="4" :sm="24">
- 特约加盟店金额:--
- </a-col>
- <a-col :md="4" :sm="24">
- 直接差价金额:1007.00
- </a-col>
- <a-col :md="4" :sm="24">
- 间接差价金额:0
- </a-col>
- </a-row>
- </template>
- </s-table>
- </a-card>
- </template>
- <script>
- import moment from 'moment'
- import getDate from '@/libs/getDate.js'
- import { STable, VSelect } from '@/components'
- import rangeDate from '@/views/common/rangeDate.vue'
- import custList from '@/views/common/custList.vue'
- import subarea from '@/views/common/subarea.js'
- import { getArea } from '@/api/data'
- import ProductBrand from '@/views/common/productBrand.js'
- import ProductType from '@/views/common/productType.js'
- // import { oosBuyerList, oosBuyerDetailCount, oosBuyerDetailPageCount, oosDetailExport } from '@/api/oos'
- export default {
- components: { STable, VSelect, custList, subarea, rangeDate, ProductBrand, ProductType },
- data () {
- return {
- advanced: false, // 高级搜索 展开/关闭
- tableHeight: 0,
- queryParam: { // 查询条件
- time: [
- getDate.getCurrMonthDays().starttime,
- getDate.getCurrMonthDays().endtime
- ],
- beginDate: getDate.getCurrMonthDays().starttime,
- endDate: getDate.getCurrMonthDays().endtime,
- buyerSn: undefined,
- subareaSn: undefined, // 区域
- provinceSn: undefined,
- citySn: undefined,
- districtSn: undefined
- },
- rules: {
- 'time': [{ required: true, message: '请选择销售日期', trigger: 'change' }]
- },
- disabled: false, // 查询、重置按钮是否可操作
- exportLoading: false, // 导出loading
- addrProvinceList: [], // 省下拉
- addrCityList: [], // 市下拉
- addrDistrictList: [], // 区下拉
- columns: [
- { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
- { title: '区域',
- dataIndex: 'area',
- width: 150,
- align: 'center',
- customRender: function (text) { return text || '--' }
- },
- { title: '订单号',
- dataIndex: 'orderNo',
- width: 150,
- align: 'center',
- customRender: function (text) { return text || '--' }
- },
- { title: '日期',
- dataIndex: 'creatDate',
- width: 200,
- align: 'center',
- customRender: function (text) { return text || '--' }
- },
- { title: '省份',
- dataIndex: 'provinceName',
- width: 100,
- align: 'center',
- customRender: function (text) { return text || '--' }
- },
- { title: '直接绑定客户名称',
- dataIndex: 'zjCustName',
- width: 200,
- align: 'center',
- customRender: function (text) { return text || '--' }
- },
- { title: '间接绑定客户名称',
- dataIndex: 'djCustName',
- width: 200,
- align: 'center',
- customRender: function (text) { return text || '--' }
- },
- { title: '客户名称',
- dataIndex: 'custName',
- width: 200,
- align: 'center',
- customRender: function (text) { return text || '--' }
- },
- { title: '客户类型',
- dataIndex: 'custType',
- width: 150,
- align: 'center',
- customRender: function (text) { return text || '--' }
- },
- { title: '品牌',
- dataIndex: 'brand',
- width: 100,
- align: 'center',
- customRender: function (text) { return text || '--' }
- },
- { title: '二级分类',
- dataIndex: 'proCls',
- width: 100,
- align: 'center',
- customRender: function (text) { return text || '--' }
- },
- { title: '数量',
- dataIndex: 'nums',
- width: 100,
- align: 'center',
- customRender: function (text) { return text || '--' }
- },
- { title: '分公司金额', width: 100, dataIndex: 'p1', align: 'center', customRender: function (text) { return text ? ('¥' + text) : '--' } },
- { title: '加盟商金额', width: 100, dataIndex: 'p2', align: 'center', customRender: function (text) { return text ? ('¥' + text) : '--' } },
- { title: '特约加盟商金额', width: 100, dataIndex: 'p3', align: 'center', customRender: function (text) { return text ? ('¥' + text) : '--' } },
- { title: '直接差价', width: 100, dataIndex: 'p4', align: 'center', customRender: function (text) { return text ? ('¥' + text) : '--' } },
- { title: '间接差价', width: 100, dataIndex: 'p5', align: 'center', customRender: function (text) { return text ? ('¥' + text) : '--' } },
- { title: '类型', width: 100, dataIndex: 'type', align: 'center', customRender: function (text) { return text || '--' } }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- // this.disabled = true
- // if (this.tableHeight == 0) {
- // this.tableHeight = window.innerHeight - 380
- // }
- // const paramsPage = Object.assign(this.queryParam, { pageNo: parameter.pageNo, pageSize: parameter.pageSize }) // 有分页
- // const params = Object.assign(parameter, this.queryParam) // 无分页
- // return oosBuyerList(params).then(res => {
- // const data = res.data
- // const no = (data.pageNo - 1) * data.pageSize
- // for (var i = 0; i < data.list.length; i++) {
- // data.list[i].no = no + i + 1
- // }
- // this.disabled = false
- // return data
- // })
- const _this = this
- return new Promise(function (resolve, reject) {
- const data = {
- pageNo: 1,
- pageSize: 10,
- list: [
- {
- area: 'A区',
- orderNo: 'XS2106210000118',
- creatDate: '2021/6/21 19:16:18',
- provinceName: '浙江省',
- zjCustName: '剪冠汽配杭州金球店',
- djCustName: '',
- custName: '剪冠汽配丽水龙泉店',
- custType: '市级加盟商',
- brand: '箭牌',
- proCls: '滤清器',
- nums: '100',
- p1: '700.00',
- p2: '780.00',
- p3: '',
- p4: '80.00',
- p5: '0.00',
- type: '采购差价'
- },
- {
- area: 'B区/04区',
- orderNo: 'XS2106210000168',
- creatDate: '2021/6/21 16:23:06',
- provinceName: '广西区',
- zjCustName: '剪冠汽配南宁兴宁店',
- djCustName: '',
- custName: '剪冠汽配梧州万秀店',
- custType: '市级加盟商',
- brand: '冠牌',
- proCls: '滤清器',
- nums: '44',
- p1: '362.00',
- p2: '406.00',
- p3: '',
- p4: '44.00',
- p5: '0.00',
- type: '采购差价'
- },
- {
- area: 'B区/04区',
- orderNo: 'XS2106210000168',
- creatDate: '2021/6/21 16:23:06',
- provinceName: '广西区',
- zjCustName: '剪冠汽配南宁兴宁店',
- djCustName: '',
- custName: '剪冠汽配梧州万秀店',
- custType: '市级加盟商',
- brand: '汇箭',
- proCls: '蓄电池',
- nums: '19',
- p1: '3942.40',
- p2: '4126.40',
- p3: '',
- p4: '184.00',
- p5: '0.00',
- type: '采购差价'
- },
- {
- area: 'B区/04区',
- orderNo: 'XS2106210000168',
- creatDate: '2021/6/21 16:23:06',
- provinceName: '广西区',
- zjCustName: '剪冠汽配南宁兴宁店',
- djCustName: '',
- custName: '剪冠汽配梧州万秀店',
- custType: '市级加盟商',
- brand: '箭牌',
- proCls: '滤清器',
- nums: '186',
- p1: '1691.00',
- p2: '1886.00',
- p3: '',
- p4: '195.00',
- p5: '0.00',
- type: '采购差价'
- },
- {
- area: 'D区/06区',
- orderNo: 'XS2106210000045',
- creatDate: '2021/6/21 16:00:37',
- provinceName: '内蒙古',
- zjCustName: '剪冠汽配锡林浩特快驰店',
- djCustName: '',
- custName: '剪冠汽配锡林浩特快驰店1',
- custType: '市级加盟商',
- brand: '箭牌',
- proCls: '滤清器',
- nums: '525',
- p1: '4480.00',
- p2: '4984.00',
- p3: '',
- p4: '504.00',
- p5: '0.00',
- type: '采购差价'
- }
- ],
- count: 1
- }
- for (var i = 0; i < data.list.length; i++) {
- data.list[i].no = i + 1
- }
- _this.disabled = false
- resolve(data)
- })
- },
- productType: [],
- productTotal: null,
- currentTotal: null
- }
- },
- methods: {
- // 创建时间 change
- dateChange (date) {
- this.queryParam.time = date
- this.queryParam.beginDate = date[0] || ''
- this.queryParam.endDate = date[1] || ''
- },
- custChange (obj) {
- this.queryParam.buyerSn = obj.key
- },
- // 产品分类 change
- changeProductType (val, opt) {
- this.queryParam.productTypeSn1 = val[0] ? val[0] : ''
- this.queryParam.productTypeSn2 = val[1] ? val[1] : ''
- this.queryParam.productTypeSn3 = val[2] ? val[2] : ''
- },
- // 获取城市列表
- getCityList (val) {
- const index = this.addrProvinceList.findIndex(item => item.areaSn == val)
- if (index >= 0) {
- this.queryParam.provinceName = this.addrProvinceList[index].name
- }
- this.addrCityList = []
- this.addrDistrictList = []
- this.queryParam.citySn = undefined
- this.queryParam.districtSn = undefined
- this.queryParam.address = ''
- this.getArea('city', val)
- },
- // 获取区县列表
- getAreaList (val) {
- const index = this.addrCityList.findIndex(item => item.areaSn == val)
- if (index >= 0) {
- this.queryParam.cityName = this.addrCityList[index].name
- }
- this.addrDistrictList = []
- this.queryParam.districtSn = undefined
- this.queryParam.address = ''
- this.getArea('district', val)
- },
- // 区县变更
- areaCharged (val) {
- const index = this.addrDistrictList.findIndex(item => item.areaSn == val)
- if (index >= 0) {
- this.queryParam.districtName = this.addrDistrictList[index].name
- }
- this.queryParam.address = ''
- },
- // 省/市/区
- getArea (leve, sn) {
- let params
- if (leve == 'province') {
- params = { type: '2' }
- } else {
- params = { parentId: sn, type: leve == 'city' ? '3' : '4' }
- }
- getArea(params).then(res => {
- if (res.status == 200) {
- if (leve == 'province') {
- this.addrProvinceList = res.data || []
- } else if (leve == 'city') {
- this.addrCityList = res.data || []
- } else if (leve == 'district') {
- this.addrDistrictList = res.data || []
- }
- } else {
- if (leve == 'province') {
- this.addrProvinceList = []
- } else if (leve == 'city') {
- this.addrCityList = []
- } else if (leve == 'district') {
- this.addrDistrictList = []
- }
- }
- })
- },
- // 重置
- resetSearchForm () {
- this.queryParam.time = [
- getDate.getCurrMonthDays().starttime,
- getDate.getCurrMonthDays().endtime
- ]
- this.$refs.rangeDate.resetDate(this.queryParam.time)
- this.queryParam.beginDate = getDate.getCurrMonthDays().starttime
- this.queryParam.endDate = getDate.getCurrMonthDays().endtime
- this.queryParam.buyerSn = undefined
- this.queryParam.subareaSn = undefined
- this.queryParam.productName = ''
- this.queryParam.productCode = ''
- this.queryParam.productTypeSn1 = ''
- this.queryParam.productTypeSn2 = ''
- this.queryParam.productTypeSn3 = ''
- this.queryParam.salesBillNo = ''
- this.productType = []
- this.$refs.table.refresh(true)
- },
- // 详情
- handleDetail (row) {
- this.$router.push({ name: 'salesDetail', params: { sn: row.salesBillSn } })
- },
- // 导出
- handleExport () {
- const params = this.queryParam
- if (this.time && this.time.length) {
- params.beginDate = moment(this.time[0]).format('YYYY-MM-DD')
- params.endDate = moment(this.time[1]).format('YYYY-MM-DD')
- } else {
- params.beginDate = ''
- params.endDate = ''
- }
- this.exportLoading = true
- oosDetailExport(params).then(res => {
- this.exportLoading = false
- this.download(res)
- })
- },
- download (data) {
- if (!data) { return }
- const url = window.URL.createObjectURL(new Blob([data]))
- const link = document.createElement('a')
- link.style.display = 'none'
- link.href = url
- const a = moment().format('YYYYMMDDHHmmss')
- const fname = '缺货统计(按客户)' + a
- link.setAttribute('download', fname + '.xlsx')
- document.body.appendChild(link)
- link.click()
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {
- vm.getArea('province')
- })
- }
- }
- </script>
|