|
@@ -2,19 +2,19 @@
|
|
|
<div class="productInfoList-wrap">
|
|
|
<!-- 搜索条件 -->
|
|
|
<div class="table-page-search-wrapper">
|
|
|
- <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
|
|
|
+ <a-form layout="inline" @keyup.enter.native="searchTable">
|
|
|
<a-row :gutter="15">
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
<a-form-item label="产品名称">
|
|
|
<a-input id="productInfoList-name" v-model.trim="queryParam.productName" allowClear placeholder="请输入产品名称"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
<a-form-item label="产品编码">
|
|
|
<a-input id="productInfoList-code" v-model.trim="queryParam.productCode" allowClear placeholder="请输入产品编码"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
+ <!-- <a-col :md="6" :sm="24">
|
|
|
<a-form-item label="是否促销品">
|
|
|
<v-select
|
|
|
code="FLAG"
|
|
@@ -24,8 +24,8 @@
|
|
|
placeholder="请选择是否"
|
|
|
></v-select>
|
|
|
</a-form-item>
|
|
|
- </a-col>
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
+ </a-col> -->
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
<a-form-item label="类型">
|
|
|
<a-select v-model.trim="queryParam.ptype" :dropdownMatchSelectWidth="false" >
|
|
|
<a-select-option value="0">
|
|
@@ -43,13 +43,13 @@
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="24">
|
|
|
+ <a-col :md="4" :sm="24">
|
|
|
<a-form-item label="出库仓库">
|
|
|
<chooseWarehouse ref="warehouse" v-model="queryParam.warehouseSn"></chooseWarehouse>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
- <a-col :md="6" :sm="24" style="margin-bottom: 10px;">
|
|
|
- <a-button type="primary" class="button-info" @click="$refs.table.refresh(true)" :disabled="disabled" id="productInfoList-refresh">查询</a-button>
|
|
|
+ <a-col :md="4" :sm="24" style="margin-bottom: 10px;">
|
|
|
+ <a-button type="primary" class="button-info" @click="searchTable" :disabled="disabled" id="productInfoList-refresh">查询</a-button>
|
|
|
<a-button style="margin-left: 5px" @click="resetSearchForm" id="productInfoList-reset">重置</a-button>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
@@ -57,17 +57,17 @@
|
|
|
</div>
|
|
|
|
|
|
<!-- alert -->
|
|
|
- <div style="margin-bottom: 10px;display: flex;" v-if="detailData">
|
|
|
- <div>
|
|
|
+ <div style="margin-bottom: 10px;display: flex;align-items: center;" v-if="detailData">
|
|
|
+ <div style="display: flex;align-items: center;">
|
|
|
<a-button type="primary" :disabled="newLoading" class="button-info" @click="handlePlAdd">批量添加</a-button>
|
|
|
<a-button type="danger" :disabled="newLoading" class="button-error" @click="handlePlCancel">批量取消</a-button>
|
|
|
- <!-- <a-button type="default" :disabled="newLoading" @click="handleOneDispatch">有货一键下推</a-button> -->
|
|
|
+ <span style="margin-left: 10px;" v-if="selectedRowKeys.length">已选 {{ selectedRowKeys.length }} 项</span>
|
|
|
</div>
|
|
|
<div style="padding-left: 20px;">
|
|
|
总销售数量:<strong>{{ detailData&&(detailData.totalQty || detailData.totalQty==0) ? detailData.totalQty : '--' }}</strong>;
|
|
|
已取消数量:<strong>{{ detailData&&(detailData.totalCancelQty || detailData.totalCancelQty==0) ? detailData.totalCancelQty : '--' }}</strong>;
|
|
|
已下推数量:<strong>{{ detailData&&(detailData.totalPushedQty || detailData.totalPushedQty==0) ? detailData.totalPushedQty : '--' }}</strong>;
|
|
|
- 待下推数量:<strong>{{ detailData&&(detailData.totalUnpushedQty || detailData.totalUnpushedQty==0) ? detailData.totalUnpushedQty : '--' }}</strong>;<br/>
|
|
|
+ 待下推数量:<strong>{{ detailData&&(detailData.totalUnpushedQty || detailData.totalUnpushedQty==0) ? detailData.totalUnpushedQty : '--' }}</strong>;
|
|
|
<span v-if="$hasPermissions('B_salesDispatch_salesPrice')">总售价:<strong>{{ detailData&&(detailData.totalAmount || detailData.totalAmount==0) ? toThousands(detailData.totalAmount) : '--' }}</strong>;</span>
|
|
|
<span v-if="$hasPermissions('B_salesDispatch_costPrice')">总成本:<strong>{{ detailData&&(detailData.totalCost || detailData.totalCost==0) ? toThousands(detailData.totalCost) : '--' }}</strong>;</span>
|
|
|
<span v-if="$hasPermissions('B_salesDispatch_costPrice')&&$hasPermissions('B_salesDispatch_salesPrice')">总毛利:<strong>{{ detailData&&(detailData.grossProfit || detailData.grossProfit==0) ? toThousands(detailData.grossProfit) : '--' }}</strong>;</span>
|
|
@@ -76,62 +76,35 @@
|
|
|
<span v-if="$hasPermissions('B_salesDispatch_salesPrice')">待下推金额:<strong>{{ detailData&&(detailData.totalUnpushedAmount || detailData.totalUnpushedAmount==0) ? toThousands(detailData.totalUnpushedAmount) : '--' }}</strong>;</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
- <!-- 列表 -->
|
|
|
- <s-table
|
|
|
- class="sTable"
|
|
|
- ref="table"
|
|
|
- size="small"
|
|
|
- :rowKey="(record) => record.id"
|
|
|
- :row-selection="{ columnWidth: 40, getCheckboxProps:record =>({props: { disabled: record.surplusQty<=0 }})}"
|
|
|
- @rowSelection="rowSelectionFun"
|
|
|
- :columns="columns"
|
|
|
- :showPagination="false"
|
|
|
- :data="loadData"
|
|
|
- :scroll="{ y: 300 }"
|
|
|
- :defaultLoadData="false"
|
|
|
- bordered>
|
|
|
- <!-- 取消数量 -->
|
|
|
- <template slot="nums" slot-scope="text, record">
|
|
|
- <div v-if="record.surplusQty>0" @dblclick.stop>
|
|
|
- <a-input-number
|
|
|
- size="small"
|
|
|
- v-model="record.cancelNums"
|
|
|
- :precision="0"
|
|
|
- :min="0"
|
|
|
- :max="record.surplusQty"
|
|
|
- style="width: 100%;"
|
|
|
- placeholder="请输入" />
|
|
|
- </div>
|
|
|
- <div v-else>--</div>
|
|
|
- </template>
|
|
|
- <!-- 产品编码 -->
|
|
|
- <template slot="productCode" slot-scope="text, record">
|
|
|
- <a-badge count="促" v-if="record.promotionFlag == 1">
|
|
|
- <div style="padding-right: 15px;">{{ text }}</div>
|
|
|
- </a-badge>
|
|
|
- <span v-else>{{ text }}</span>
|
|
|
- </template>
|
|
|
- <!-- 操作 -->
|
|
|
- <template slot="action" slot-scope="text, record">
|
|
|
- <a-button
|
|
|
- size="small"
|
|
|
- type="link"
|
|
|
- class="button-info"
|
|
|
- :loading="newLoading"
|
|
|
- @click="handleAdd(record)"
|
|
|
- v-if="record.surplusQty>0"
|
|
|
- id="productInfoList-edit-btn">添加</a-button>
|
|
|
- <span v-else>--</span>
|
|
|
- </template>
|
|
|
- </s-table>
|
|
|
+
|
|
|
+ <a-spin :spinning="spinning" tip="Loading...">
|
|
|
+ <ve-table
|
|
|
+ border-y
|
|
|
+ v-show="!showEmpty"
|
|
|
+ :scroll-width="0"
|
|
|
+ :max-height="tableHeight"
|
|
|
+ :show-header="showTableHead"
|
|
|
+ :row-style-option="{clickHighlight: true}"
|
|
|
+ :cellSelectionOption="{enable: false}"
|
|
|
+ :virtual-scroll-option="{enable: true}"
|
|
|
+ :columns="columns"
|
|
|
+ :table-data="dataSource"
|
|
|
+ row-key-field-name="id"
|
|
|
+ :cell-style-option="cellStyleOption"
|
|
|
+ :cell-span-option="cellSpanOption"
|
|
|
+ :column-width-resize-option="columnWidthResizeOption"
|
|
|
+ :checkbox-option="checkboxOption"
|
|
|
+ />
|
|
|
+ <div v-show="showEmpty" class="empty-data">暂无数据</div>
|
|
|
+ </a-spin>
|
|
|
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
import { commonMixin } from '@/utils/mixin'
|
|
|
-import { salesDetailAllStockList } from '@/api/salesDetail'
|
|
|
+import { salesPromoQueryList } from '@/api/salesNew'
|
|
|
+import { salesDetailAllList } from '@/api/salesDetailNew'
|
|
|
import { STable, VSelect } from '@/components'
|
|
|
import chooseWarehouse from '@/views/common/chooseWarehouse'
|
|
|
export default {
|
|
@@ -139,17 +112,22 @@ export default {
|
|
|
mixins: [commonMixin],
|
|
|
components: { STable, VSelect, chooseWarehouse },
|
|
|
props: {
|
|
|
- newLoading: Boolean
|
|
|
- },
|
|
|
- watch: {
|
|
|
- data (newValue, oldValue) {
|
|
|
- this.resetSearchForm()
|
|
|
+ newLoading: {
|
|
|
+ type: Boolean,
|
|
|
+ default: false
|
|
|
+ },
|
|
|
+ maxHeight:{
|
|
|
+ type: [String,Number],
|
|
|
+ default: '300'
|
|
|
+ },
|
|
|
+ showHeader: {
|
|
|
+ type: Boolean,
|
|
|
+ default: true
|
|
|
}
|
|
|
},
|
|
|
data () {
|
|
|
return {
|
|
|
advanced: true, // 高级搜索 展开/关闭
|
|
|
- showSetting: false, // 设置弹框
|
|
|
productType: [],
|
|
|
salesBillSn: '',
|
|
|
detailData: null,
|
|
@@ -166,81 +144,257 @@ export default {
|
|
|
warehouseSn: undefined
|
|
|
},
|
|
|
disabled: false, // 查询、重置按钮是否可操作
|
|
|
- // 加载数据方法 必须为 Promise 对象
|
|
|
- loadData: parameter => {
|
|
|
- this.disabled = true
|
|
|
- this.queryParam.salesBillSn = this.salesBillSn
|
|
|
- return salesDetailAllStockList(Object.assign(parameter, this.queryParam)).then(res => {
|
|
|
- let data
|
|
|
- if (res.status == 200) {
|
|
|
- data = res.data
|
|
|
- if (data) {
|
|
|
- // 根据类型过滤数据
|
|
|
- data = data.filter(item => {
|
|
|
- if (this.queryParam.ptype == '1') {
|
|
|
- return item != null && item.surplusQty > 0
|
|
|
- }
|
|
|
- if (this.queryParam.ptype == '2') {
|
|
|
- return item != null && item.surplusQty > 0 && item.surplusQty <= item.stockQty
|
|
|
- }
|
|
|
- if (this.queryParam.ptype == '3') {
|
|
|
- return item != null && item.surplusQty > item.stockQty
|
|
|
- }
|
|
|
- if (this.queryParam.ptype == '0') {
|
|
|
- return item != null
|
|
|
- }
|
|
|
- })
|
|
|
- // 增加编号
|
|
|
- const no = 0
|
|
|
- for (var i = 0; i < data.length; i++) {
|
|
|
- data[i].no = no + i + 1
|
|
|
- data[i].cancelNums = data[i].surplusQty
|
|
|
- }
|
|
|
- this.disabled = false
|
|
|
+ activeList: [], // 活动列表
|
|
|
+ spinning: false,
|
|
|
+ dataSource: [],
|
|
|
+ tableHeight: this.maxHeight,
|
|
|
+ cellStyleOption: {
|
|
|
+ bodyCellClass: ({ row, column, rowIndex }) => {
|
|
|
+ if (row.id.indexOf('promo-')>=0 && column.field === "no") {
|
|
|
+ return "table-body-cell-no";
|
|
|
}
|
|
|
- }
|
|
|
- return data
|
|
|
- })
|
|
|
+ },
|
|
|
+ },
|
|
|
+ columnWidthResizeOption: {
|
|
|
+ // default false
|
|
|
+ enable: true,
|
|
|
+ // column resize min width
|
|
|
+ minWidth: 50
|
|
|
+ },
|
|
|
+ cellSpanOption: {
|
|
|
+ bodyCellSpan: this.bodyCellSpan,
|
|
|
},
|
|
|
- rowSelectionInfo: null
|
|
|
+ checkboxOption:{
|
|
|
+ disableSelectedRowKeys: this.disableSelectedRowKeys,
|
|
|
+ selectedRowKeys: this.selectedRowKeys,
|
|
|
+ // 行选择改变事件
|
|
|
+ selectedRowChange: ({ row, isSelected, selectedRowKeys }) => {
|
|
|
+ this.selectedRowChange({ row, isSelected, selectedRowKeys })
|
|
|
+ },
|
|
|
+ // 全选改变事件
|
|
|
+ selectedAllChange: ({ isSelected, selectedRowKeys }) => {
|
|
|
+ this.selectedAllChange({ isSelected, selectedRowKeys })
|
|
|
+ },
|
|
|
+ },
|
|
|
+ showEmpty: false,
|
|
|
+ showTableHead: true,
|
|
|
+ disableSelectedRowKeys: [],
|
|
|
+ selectedRowKeys: []
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
|
columns () {
|
|
|
- const arr = [
|
|
|
- // { title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
|
|
|
- { title: '产品编码', dataIndex: 'productEntity.code', scopedSlots: { customRender: 'productCode' }, width: '14%', align: 'center' },
|
|
|
- { title: '产品名称', dataIndex: 'productEntity.name', width: '14%', align: 'left', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
- { title: '原厂编码', dataIndex: 'productEntity.origCode', width: '10%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- // { title: '销售价', dataIndex: 'price', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
- // { title: '成本价', dataIndex: 'showCost', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
- { title: '出库仓库', dataIndex: 'warehouseName', width: '8%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
|
|
|
- { title: '单位', dataIndex: 'productEntity.unit', width: '4%', align: 'center', customRender: function (text) { return text || '--' } },
|
|
|
- { title: '可用库存', dataIndex: 'stockQty', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
- { title: '销售数量', dataIndex: 'qty', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
- { title: '已取消', dataIndex: 'cancelQty', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
- { title: '已下推', dataIndex: 'pushedQty', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
- { title: '待下推数量', dataIndex: 'surplusQty', width: '7%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
|
|
|
- { title: '取消数量', dataIndex: 'cancelNums', scopedSlots: { customRender: 'nums' }, width: '7%', align: 'center' },
|
|
|
- { title: '操作', dataIndex: 'action', scopedSlots: { customRender: 'action' }, width: '8%', align: 'center' }
|
|
|
- ]
|
|
|
+ const _this = this
|
|
|
+ const priceFormat = function(data){
|
|
|
+ return _this.toThousands(data) || '--'
|
|
|
+ }
|
|
|
+ const numsFormat = function(data){
|
|
|
+ return data || data == 0 ? data : '--'
|
|
|
+ }
|
|
|
+ const codeFormat = function(record,data,h){
|
|
|
+ let ftext = ''
|
|
|
+ let fcolor = ''
|
|
|
+ if(record.promotionFlag == 'GIFT'){
|
|
|
+ ftext = '促'
|
|
|
+ fcolor = '#52c41a'
|
|
|
+ }
|
|
|
+ if(record.promotionFlag == 'REGULAR'){
|
|
|
+ ftext = '正'
|
|
|
+ fcolor = '#108ee9'
|
|
|
+ }
|
|
|
+ if(record.promotionFlag == 'DISCOUNT'){
|
|
|
+ ftext = '特'
|
|
|
+ fcolor = '#faad14'
|
|
|
+ }
|
|
|
+ return (
|
|
|
+ <div>
|
|
|
+ <span style="padding-right: 15px;">{data}</span>
|
|
|
+ {ftext?(<a-badge count={ftext} number-style={{ backgroundColor: fcolor, zoom:'80%' }}></a-badge>):''}
|
|
|
+ {Number(record.stockQty||0) < Number(record.unpushedQty||0)?(<a-badge count="缺" number-style={{ zoom:'80%' }}></a-badge>):''}
|
|
|
+ </div>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ // 输入框
|
|
|
+ const inputFormat = function(record,data,h) {
|
|
|
+ if(record.surplusQty>0){
|
|
|
+ return (
|
|
|
+ <div>
|
|
|
+ <a-input-number
|
|
|
+ size="small"
|
|
|
+ vModel={record.cancelNums}
|
|
|
+ precision={0}
|
|
|
+ min={0}
|
|
|
+ max={record.surplusQty}
|
|
|
+ style="width: 100%;"
|
|
|
+ placeholder="请输入" />
|
|
|
+ </div>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ return '--'
|
|
|
+ }
|
|
|
+ // 操作按钮
|
|
|
+ const actionFormat = function(record,data,h) {
|
|
|
+ if(record.surplusQty>0){
|
|
|
+ return (
|
|
|
+ <div>
|
|
|
+ <a-button
|
|
|
+ size="small"
|
|
|
+ type="link"
|
|
|
+ class="button-info"
|
|
|
+ onClick="handleAdd(record)"
|
|
|
+ >添加</a-button>
|
|
|
+ </div>
|
|
|
+ )
|
|
|
+ }
|
|
|
+ return '--'
|
|
|
+ }
|
|
|
+ // 编号,并且格式化活动分类行
|
|
|
+ const noFormat = function(record,data,h){
|
|
|
+ return (
|
|
|
+ <div>
|
|
|
+ {record.id.indexOf('promo-')>=0 ? (
|
|
|
+ <div class="active-title">
|
|
|
+ {record.promo?(
|
|
|
+ <div>
|
|
|
+ <strong style="margin-right:10px;font-size:14px;">{record.promo.promotion.title} ({record.promo.promotionRule.description})</strong>
|
|
|
+ <span style="margin-left:10px;color:#00aaff;cursor: pointer;" onClick="(event) => {showDesc(event, item)}">
|
|
|
+ <a-icon title="查看活动详情" type="eye"/> 活动详情
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ ):(<div></div>)}
|
|
|
+ <div>
|
|
|
+ 总售价:<strong>12333</strong>;
|
|
|
+ 总款数:<strong>22</strong>;
|
|
|
+ 总数量:<strong>134</strong>;
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ ):(<span>{data}</span>)}
|
|
|
+ </div>
|
|
|
+ )
|
|
|
+ }
|
|
|
+
|
|
|
+ let arr= [
|
|
|
+ { title: "", field: "", key: "acheck", type: "checkbox", align: "center" },
|
|
|
+ { title: '序号', field: 'no',key: "a", width: 50, align: 'center', operationColumn: false,renderBodyCell: ({ row, column, rowIndex }, h) => { return noFormat(row,row[column.field],h)} },
|
|
|
+ { title: '产品编码', field: 'productCode',key: "b", width: 150, align: 'center',operationColumn: false,renderBodyCell: ({ row, column, rowIndex }, h) => { return codeFormat(row,row[column.field],h)} },
|
|
|
+ { title: '产品名称', field: 'productName',key: "c", width: 250, align: 'center',operationColumn: false , ellipsis: { showTitle: true },renderBodyCell: ({ row, column, rowIndex }, h) => { return row[column.field] || '--'}},
|
|
|
+ { title: '原厂编码', field: 'productOrigCode',key: "d", width: 150, align: 'center',operationColumn: false,ellipsis: { showTitle: true },renderBodyCell: ({ row, column, rowIndex }, h) => { return row[column.field] || '--'} },
|
|
|
+ { title: '出库仓库', field: 'warehouseName',key: "e", width: 100, align: 'center',operationColumn: false,renderBodyCell: ({ row, column, rowIndex }, h) => { return row[column.field] || '--'}}
|
|
|
+ ]
|
|
|
if (this.$hasPermissions('B_salesDispatch_salesPrice')) { // 售价权限
|
|
|
- arr.splice(3, 0, { title: '销售价', dataIndex: 'price', width: '6%', align: 'right', customRender: text => ((text || text == 0) ? this.toThousands(text) : '--') })
|
|
|
+ arr.push({ title: '销售价', field: 'price', width: 80,key: "f", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return priceFormat(row[column.field])} })
|
|
|
}
|
|
|
if (this.$hasPermissions('B_salesDispatch_costPrice')) {
|
|
|
- const ind = this.$hasPermissions('B_salesDispatch_salesPrice') ? 4 : 3
|
|
|
- arr.splice(ind, 0, { title: '成本价', dataIndex: 'showCost', width: '6%', align: 'right', customRender: text => ((text || text == 0) ? this.toThousands(text) : '--') })
|
|
|
- }
|
|
|
+ arr.push({ title: '成本价', field: 'showCost', width: 80,key: "g", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return priceFormat(row[column.field])} })
|
|
|
+ }
|
|
|
+ arr = arr.concat([
|
|
|
+ { title: '出库仓库', field: 'warehouseName',key: "h", width: 100, align: 'center',operationColumn: false,renderBodyCell: ({ row, column, rowIndex }, h) => { return row[column.field] || '--'}},
|
|
|
+ { title: '单位', field: 'productOrigUnit',key: "i", width: 80, align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return row[column.field] || '--'}},
|
|
|
+ { title: '可用库存', field: 'stockQty', width: 80,key: "j", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} },
|
|
|
+ { title: '销售数量', field: 'qty', width: 80,key: "k", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} },
|
|
|
+ { title: '已取消', field: 'cancelQty', width: 80,key: "o", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} },
|
|
|
+ { title: '已下推', field: 'pushedQty', width: 80,key: "p", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} },
|
|
|
+ { title: '待下推', field: 'surplusQty', width: 80,key: "q", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return numsFormat(row[column.field])} },
|
|
|
+ { title: '取消数量', field: 'surplusQty', width: 80,key: "r", align: 'center',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return inputFormat(row,row[column.field],h)} },
|
|
|
+ { title: '操作', field: 'action', width: 80,key: "s", align: 'center',fixed: 'right',operationColumn: false, renderBodyCell: ({ row, column, rowIndex }, h) => { return actionFormat(row,row[column.field],h)} },
|
|
|
+ ])
|
|
|
+
|
|
|
return arr
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
- // 表格选中项
|
|
|
- rowSelectionFun (obj) {
|
|
|
- this.rowSelectionInfo = obj || null
|
|
|
+ // 合并活动分类单元格
|
|
|
+ bodyCellSpan({ row, column, rowIndex }) {
|
|
|
+ if (row.id.indexOf('promo-')>=0) {
|
|
|
+ if(column.field=='no'){
|
|
|
+ return {
|
|
|
+ rowspan: 1,
|
|
|
+ colspan: 17,
|
|
|
+ };
|
|
|
+ }else{
|
|
|
+ return {
|
|
|
+ rowspan: 0,
|
|
|
+ colspan: 0,
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 选择单元格
|
|
|
+ selectedRowChange({ row, isSelected, selectedRowKeys }){
|
|
|
+ console.log(row, isSelected, selectedRowKeys);
|
|
|
+ this.selectedRowKeys = selectedRowKeys;
|
|
|
+ },
|
|
|
+ // 全选行
|
|
|
+ selectedAllChange({ isSelected, selectedRowKeys }){
|
|
|
+ console.log(isSelected, selectedRowKeys);
|
|
|
+ this.selectedRowKeys = this.dataSource.map((x) => x.rowKey);
|
|
|
+ },
|
|
|
+ // 获取销售单参与的活动列表
|
|
|
+ getActiveList(){
|
|
|
+ salesPromoQueryList({ salesBillSn: this.salesBillSn }).then(res => {
|
|
|
+ if(res.status == 200){
|
|
|
+ this.activeList = res.data || []
|
|
|
+ }
|
|
|
+ this.$nextTick(()=>{
|
|
|
+ this.searchTable()
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ async searchTable(){
|
|
|
+ this.dataSource = []
|
|
|
+ this.disabled = true
|
|
|
+ this.spinning = true
|
|
|
+ this.queryParam.salesBillSn = this.salesBillSn
|
|
|
+ this.queryParam.showStock = true
|
|
|
+ const params = this.queryParam
|
|
|
+ // 正常产品
|
|
|
+ const proList = await salesDetailAllList(params).then(res => res.data)
|
|
|
+ let listData = [{
|
|
|
+ id: 'promo-normal',
|
|
|
+ // total: norTotal
|
|
|
+ },...proList]
|
|
|
+ const active = this.activeList
|
|
|
+ this.disableSelectedRowKeys.push('promo-normal')
|
|
|
+ // 活动产品
|
|
|
+ for(let i=0;i<active.length;i++){
|
|
|
+ const promo = active[i]
|
|
|
+ params.promoRuleSn = promo.promoRuleSn
|
|
|
+ params.promoSn = promo.promoSn
|
|
|
+ params.salesPromoSn = promo.salesPromoSn
|
|
|
+ // 获取活动产品列表
|
|
|
+ const aclist = await salesDetailAllList(params).then(res => res.data)
|
|
|
+ // 获取活动产品统计
|
|
|
+ //const acTotal = await salesDetailCount(params).then(res => res.data)
|
|
|
+ const retList = [{
|
|
|
+ id: 'promo-'+i,
|
|
|
+ promo: promo,
|
|
|
+ // total: acTotal
|
|
|
+ },...aclist]
|
|
|
+ this.disableSelectedRowKeys.push('promo-'+i)
|
|
|
+ listData = aclist&&aclist.length ? listData.concat(retList) : listData
|
|
|
+ }
|
|
|
+
|
|
|
+ console.log(listData)
|
|
|
+ this.dataSource = listData
|
|
|
+
|
|
|
+ // 格式化数据
|
|
|
+ let f = 0
|
|
|
+ this.dataSource.map((item,i) => {
|
|
|
+ if(item.id.indexOf('promo-')>=0){f = f - 1}
|
|
|
+ item.no = i + 1 + f
|
|
|
+ const productCode = (item.productEntity && item.productEntity.code) || (item.dealerProductEntity && item.dealerProductEntity.code)
|
|
|
+ const productName = (item.productEntity && item.productEntity.name) || (item.dealerProductEntity && item.dealerProductEntity.name)
|
|
|
+ const productOrigCode = (item.productEntity && item.productEntity.origCode) || (item.dealerProductEntity && item.dealerProductEntity.origCode)
|
|
|
+ const productOrigUnit = (item.productEntity && item.productEntity.unit) || (item.dealerProductEntity && item.dealerProductEntity.unit)
|
|
|
+ item.productCode = productCode || '--'
|
|
|
+ item.productName = productName || '--'
|
|
|
+ item.productOrigCode = productOrigCode == ' ' ? '--' : productOrigCode
|
|
|
+ item.productOrigUnit = productOrigUnit || '--'
|
|
|
+ })
|
|
|
+ this.tableHeight = (this.showEmpty ? 200 : this.maxHeight) + 'px'
|
|
|
+ this.spinning = false
|
|
|
+ this.disabled = false
|
|
|
},
|
|
|
- // 类型变化,过滤列表
|
|
|
- handlePtypeChange () {},
|
|
|
// 重置
|
|
|
resetSearchForm () {
|
|
|
this.queryParam.ptype = '0'
|
|
@@ -253,22 +407,21 @@ export default {
|
|
|
this.queryParam.productTypeSn3 = ''
|
|
|
this.queryParam.warehouseSn = undefined
|
|
|
this.productType = []
|
|
|
- this.$refs.table.refresh(true)
|
|
|
+ this.dataSource = []
|
|
|
+ this.searchTable()
|
|
|
},
|
|
|
pageInit (salesBillSn, detailData) {
|
|
|
this.salesBillSn = salesBillSn
|
|
|
this.detailData = detailData
|
|
|
- this.$refs.table.clearSelected()
|
|
|
- this.resetSearchForm()
|
|
|
+ // 获取活动列表
|
|
|
+ this.getActiveList()
|
|
|
},
|
|
|
clearTable () {
|
|
|
- this.rowSelectionInfo = null
|
|
|
- this.$refs.table.clearSelected()
|
|
|
+
|
|
|
},
|
|
|
// 刷新当前页面
|
|
|
resetCurForm () {
|
|
|
- this.$refs.table.clearSelected() // 清空表格选中项
|
|
|
- this.$refs.table.refresh()
|
|
|
+
|
|
|
},
|
|
|
// 添加
|
|
|
handleAdd (row) {
|
|
@@ -323,10 +476,6 @@ export default {
|
|
|
|
|
|
this.$emit('cancelProduct', obj)
|
|
|
},
|
|
|
- // 一键下推
|
|
|
- handleOneDispatch () {
|
|
|
- this.$emit('oneDispatch')
|
|
|
- },
|
|
|
// 产品分类 change
|
|
|
changeProductType (val, opt) {
|
|
|
this.queryParam.productTypeSn1 = val[0] ? val[0] : ''
|
|
@@ -336,3 +485,18 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
+<style lang="less">
|
|
|
+.ve-table-body-td{
|
|
|
+ .active-title{
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: space-between;
|
|
|
+ padding: 10px;
|
|
|
+ background: #f3f8fa;
|
|
|
+ }
|
|
|
+}
|
|
|
+.ve-table .ve-table-container .ve-table-content-wrapper table.ve-table-content tbody.ve-table-body tr.ve-table-body-tr td.table-body-cell-no,
|
|
|
+.ve-table .ve-table-container .ve-table-content-wrapper table.ve-table-content tbody.ve-table-body tr.ve-table-expand-tr td.table-body-cell-no{
|
|
|
+ padding: 0;
|
|
|
+}
|
|
|
+</style>
|