123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 |
- <template>
- <a-card size="small" :bordered="false" class="sendStorageReportList-wrap">
- <!-- 搜索条件 -->
- <div class="table-page-search-wrapper">
- <a-form-model
- id="sendStorageReportList-form"
- ref="ruleForm"
- :model="queryParam"
- :rules="rules"
- :labelCol="labelCol"
- :wrapperCol="wrapperCol"
- @keyup.enter.native="handleSearch" >
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-model-item label="连锁店" prop="targetName">
- <a-select
- placeholder="请选择连锁店"
- id="sendStorageReportList-targetName"
- allowClear
- v-model="queryParam.targetName"
- :showSearch="true"
- option-filter-prop="children"
- :filter-option="filterOption">
- <a-select-option v-for="item in allocateTypeList" :key="item.brandSn" :value="item.brandSn">{{ item.brandName }}</a-select-option>
- </a-select>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="日期">
- <rangeDate ref="rangeDate" @change="dateChange" />
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="产品编码">
- <a-input id="sendStorageReportList-code" v-model.trim="queryParam.code" allowClear placeholder="请输入产品编码"/>
- </a-form-model-item>
- </a-col>
- <template v-if="advanced">
- <a-col :md="6" :sm="24">
- <a-form-model-item label="产品名称">
- <a-input id="sendStorageReportList-name" v-model.trim="queryParam.name" allowClear placeholder="请输入产品名称"/>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="产品品牌">
- <a-select
- placeholder="请选择产品品牌"
- id="sendStorageReportList-productBrandSn"
- allowClear
- v-model="queryParam.productBrandSn"
- :showSearch="true"
- option-filter-prop="children"
- :filter-option="filterOption">
- <a-select-option v-for="item in productBrandList" :key="item.brandSn" :value="item.brandSn">{{ item.brandName }}</a-select-option>
- </a-select>
- </a-form-model-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-model-item label="产品分类">
- <a-cascader
- @change="changeProductType"
- change-on-select
- v-model="productType"
- expand-trigger="hover"
- :options="productTypeList"
- :fieldNames="{ label: 'productTypeName', value: 'productTypeSn', children: 'children' }"
- id="sendStorageReportList-productType"
- placeholder="请选择产品分类"
- allowClear />
- </a-form-model-item>
- </a-col>
- </template>
- <a-col :md="6" :sm="24">
- <a-button type="primary" @click="handleSearch" :disabled="disabled" id="sendStorageReportList-refresh">查询</a-button>
- <a-button style="margin-left: 5px" @click="resetSearchForm" :disabled="disabled" id="sendStorageReportList-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: 2390 }"
- bordered>
- <template slot="footer" slot-scope="currentPageData">
- <span>
- 合计: 期初数量:{{ totalData.beginQty || 0 }} 期初金额:{{ totalData.beginAmount || 0 }} 收入数量:{{ totalData.putQty || 0 }} 收入金额:{{ totalData.putAmount || 0 }} 发出数量:{{ totalData.outQty || 0 }} 发出金额:{{ totalData.outAmount || 0 }} 结算数量:{{ totalData.endQty || 0 }} 结算金额:{{ totalData.endAmount || 0 }}
- </span>
- </template>
- </s-table>
- </a-card>
- </template>
- <script>
- import { STable, VSelect } from '@/components'
- import { dealerProductBrandQuery } from '@/api/dealerProductBrand'
- import { dealerProductTypeList } from '@/api/dealerProductType'
- import rangeDate from '@/views/common/rangeDate.vue'
- import { linkageReportPageList, linkageReportPageTotal } from '@/api/reportData.js'
- export default {
- components: { STable, VSelect, rangeDate },
- data () {
- return {
- advanced: false, // 高级搜索 展开/关闭
- tableHeight: 0,
- queryParam: { // 查询条件
- beginDate: '',
- endDate: '',
- targetName: undefined,
- code: '', // 产品编码
- name: '', // 产品名称
- origCode: '', // 原厂编码
- productBrandSn: undefined, // 产品品牌
- productTypeSn1: '', // 产品一级分类
- productTypeSn2: '', // 产品二级分类
- productTypeSn3: '' // 产品三级分类
- },
- labelCol: { span: 8 },
- wrapperCol: { span: 16 },
- rules: {
- 'targetName': [{ required: true, message: '请选择连锁店', trigger: 'change' }],
- 'date': [{ required: true, message: '请选择日期', trigger: 'change' }]
- },
- disabled: false, // 查询、重置按钮是否可操作
- exportLoading: false,
- columns: [
- { title: '序号',
- dataIndex: 'no',
- width: 80,
- align: 'center'
- // fixed: 'left'
- },
- { title: '产品编码',
- dataIndex: 'code',
- width: 220,
- align: 'center',
- customRender: function (value, row, index) {
- value = row.productEntity && row.productEntity.code ? row.productEntity.code : '--'
- const obj = { children: value, attrs: {} }
- if (value == '合计') { obj.attrs.colSpan = 0 }
- obj.children = row.productEntity && row.productEntity.code ? row.productEntity.code : '--'
- return obj
- }
- },
- { title: '产品名称',
- dataIndex: 'name',
- width: 220,
- align: 'center',
- customRender: function (value, row, index) {
- value = value || '--'
- const obj = { children: value, attrs: {} }
- if (value == '合计') { obj.attrs.colSpan = 0 }
- obj.children = row.productEntity && row.productEntity.name ? row.productEntity.name : '--'
- return obj
- },
- ellipsis: true
- },
- { title: '品牌',
- dataIndex: 'productBrandName',
- align: 'center',
- width: 200,
- customRender: function (value, row, index) {
- value = value || '--'
- const obj = { children: value, attrs: {} }
- if (value == '合计') { obj.attrs.colSpan = 0 }
- obj.children = row.productEntity && row.productEntity.productBrandName ? row.productEntity.productBrandName : '--'
- return obj
- }
- },
- { title: '三级分类',
- dataIndex: 'productTypeName3',
- width: 150,
- align: 'center',
- customRender: function (value, row, index) {
- value = value || '--'
- const obj = { children: value, attrs: {} }
- if (value == '合计') { obj.attrs.colSpan = 0 }
- obj.children = row.productEntity && row.productEntity.productTypeName3 ? row.productEntity.productTypeName3 : '--'
- return obj
- }
- },
- { title: '原厂编码',
- dataIndex: 'origCode',
- width: 220,
- align: 'center',
- customRender: function (value, row, index) {
- value = value || '--'
- const obj = { children: value, attrs: {} }
- if (value == '合计') { obj.attrs.colSpan = 0 }
- obj.children = row.productEntity && row.productEntity.origCode ? row.productEntity.origCode : '--'
- return obj
- }
- },
- { title: '单位',
- dataIndex: 'unit',
- width: 100,
- align: 'center',
- customRender: function (value, row, index) {
- value = value || '--'
- const obj = { children: value, attrs: {} }
- if (value == '合计') { obj.attrs.colSpan = 0 }
- obj.children = row.productEntity && row.productEntity.unit ? row.productEntity.unit : '--'
- return obj
- }
- },
- { title: '期初数量', dataIndex: 'beginQty', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '期初单价(¥)', dataIndex: 'beginPrice', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '期初金额(¥)', dataIndex: 'beginAmount', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '收入数量', dataIndex: 'putQty', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '收入单价(¥)', dataIndex: 'putPrice', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '收入金额(¥)', dataIndex: 'putAmount', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '发出数量', dataIndex: 'outQty', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '发出单价(¥)', dataIndex: 'outPrice', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '发出金额(¥)', dataIndex: 'outAmount', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '结存数量', dataIndex: 'endQty', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '结存单价(¥)', dataIndex: 'endPrice', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '结存金额(¥)', dataIndex: 'endAmount', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: async parameter => {
- if (this.queryParam.beginDate) {
- this.disabled = true
- const params = {
- beginDate: this.queryParam.beginDate,
- endDate: this.queryParam.endDate,
- targetName: this.queryParam.targetName,
- productEntity: {
- code: this.queryParam.code, // 产品编码
- name: this.queryParam.name, // 产品名称
- origCode: this.queryParam.origCode, // 原厂编码
- productBrandSn: this.queryParam.productBrandSn, // 产品品牌
- productTypeSn1: this.queryParam.productTypeSn1, // 产品一级分类
- productTypeSn2: this.queryParam.productTypeSn2, // 产品二级分类
- productTypeSn3: this.queryParam.productTypeSn3 // 产品三级分类
- }
- }
- return linkageReportPageList(Object.assign(parameter, 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
- })
- } else {
- return new Promise(function (resolve, reject) {
- const data = {
- pageNo: 1,
- pageSize: 10,
- list: [],
- count: 10
- }
- resolve(data)
- })
- }
- },
- productType: [],
- productBrandList: [], // 品牌下拉数据
- productTypeList: [], // 分类下拉数据
- allocateTypeList: [], // 调拨类型
- totalData: {} // 合计
- }
- },
- methods: {
- // 时间 change
- dateChange (date) {
- this.queryParam.beginDate = date[0]
- this.queryParam.endDate = date[1]
- },
- // 查询
- handleSearch () {
- if (!this.queryParam.beginDate) {
- return this.$message.error('请先选择日期')
- }
- this.$refs.table.refresh(true)
- this.getTotal()
- // this.$refs.ruleForm.validate(valid => {
- // if (valid) {
- // if (!this.queryParam.beginDate) {
- // return this.$message.error('请先选择日期')
- // }
- // this.$refs.table.refresh(true)
- // this.getTotal()
- // } else {
- // console.log('error submit!!')
- // return false
- // }
- // })
- },
- // 查询总计
- getTotal () {
- const params = {
- beginDate: this.queryParam.beginDate,
- endDate: this.queryParam.endDate,
- targetName: this.queryParam.targetName,
- productEntity: {
- code: this.queryParam.code, // 产品编码
- name: this.queryParam.name, // 产品名称
- origCode: this.queryParam.origCode, // 原厂编码
- productBrandSn: this.queryParam.productBrandSn, // 产品品牌
- productTypeSn1: this.queryParam.productTypeSn1, // 产品一级分类
- productTypeSn2: this.queryParam.productTypeSn2, // 产品二级分类
- productTypeSn3: this.queryParam.productTypeSn3 // 产品三级分类
- }
- }
- linkageReportPageTotal(params).then(res => {
- if (res.status == 200 && res.data) {
- this.totalData = res.data
- } else {
- this.totalData = {}
- }
- })
- },
- // 重置
- resetSearchForm () {
- this.queryParam.targetName = undefined
- this.queryParam.code = ''
- this.queryParam.name = ''
- this.queryParam.origCode = ''
- this.queryParam.productBrandSn = undefined
- this.queryParam.productTypeSn1 = ''
- this.queryParam.productTypeSn2 = ''
- this.queryParam.productTypeSn3 = ''
- this.productType = []
- this.$refs.table.refresh(true)
- },
- // 产品分类 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] : ''
- },
- // 产品品牌 列表
- getProductBrand () {
- dealerProductBrandQuery({}).then(res => {
- if (res.status == 200) {
- this.productBrandList = res.data
- } else {
- this.productBrandList = []
- }
- })
- },
- // 产品分类 列表
- getProductType () {
- dealerProductTypeList({}).then(res => {
- if (res.status == 200) {
- this.productTypeList = res.data
- } else {
- this.productTypeList = []
- }
- })
- },
- filterOption (input, option) {
- return (
- option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
- )
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {
- vm.getProductBrand()
- vm.getProductType()
- })
- }
- }
- </script>
|