123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414 |
- <template>
- <a-card size="small" :bordered="false" class="salesManagementList-wrap">
- <!-- 搜索条件 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-item label="创建时间">
- <a-range-picker
- style="width:100%"
- id="salesManagementList-creatDate"
- :disabledDate="disabledDate"
- v-model="time"
- :format="dateFormat"
- :placeholder="['开始时间', '结束时间']" />
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="客户名称" :label-col="{ span:7 }" :wrapper-col="{ span:17}">
- <a-select
- id="salesManagementList-buyerName"
- placeholder="请选择客户"
- allowClear
- v-model="queryParam.buyerName"
- :showSearch="true"
- option-filter-prop="children"
- :filter-option="filterOption">
- <a-select-option v-for="item in custAllList" :key="item.customerSn" :value="item.customerName">{{ item.customerName }}</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="销售单号">
- <a-input id="salesManagementList-salesBillNo" v-model.trim="queryParam.salesBillNo" allowClear placeholder="请输入销售单号"/>
- </a-form-item>
- </a-col>
- <template v-if="advanced">
- <a-col :md="6" :sm="24">
- <a-form-item label="采购单号">
- <a-input id="salesManagementList-purchaseBillNo" v-model.trim="queryParam.purchaseBillNo" allowClear placeholder="请输入采购单号"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="收款方式">
- <a-select placeholder="请选择收款方式" v-model="queryParam.settleStyleSn">
- <a-select-option v-for="item in settleStyleList" :key="item.settleStyleSn" :value="item.settleStyleSn">
- {{ item.name }}
- </a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="业务状态">
- <v-select
- v-model="queryParam.billStatus"
- ref="billStatus"
- id="salesManagementList-billStatus"
- code="SALES_BILL_STATUS"
- placeholder="请选择业务状态"
- allowClear></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="财务状态">
- <v-select
- v-model="queryParam.financialStatus"
- ref="financialStatus"
- id="salesManagementList-financialStatus"
- code="FINANCIAL_RECEIVE_STATUS"
- placeholder="请选择财务状态"
- allowClear></v-select>
- </a-form-item>
- </a-col>
- </template>
- <a-col :md="6" :sm="24">
- <span class="table-page-search-submitButtons">
- <a-button type="primary" :disabled="disabled" @click="$refs.table.refresh(true)">查询</a-button>
- <a-button style="margin-left: 8px" :disabled="disabled" @click="resetSearchForm()">重置</a-button>
- <a @click="advanced=!advanced" style="margin-left: 8px">
- {{ advanced ? '收起' : '展开' }}
- <a-icon :type="advanced ? 'up' : 'down'"/>
- </a>
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- 操作按钮 -->
- <div class="table-operator">
- <a-button type="primary" class="button-error" @click="handleAdd">新增(零售)</a-button>
- </div>
- <!-- alert -->
- <a-alert type="info" showIcon style="margin-bottom:15px">
- <div slot="message">
- 总售价:<strong>{{ totalData.totalAmount }}</strong>元;
- 总单数:<strong>{{ totalData.totalRecord }}</strong>;
- 总款数:<strong>{{ totalData.totalCategory }}</strong>;
- 总数量:<strong>{{ totalData.totalQty }}</strong>;
- </div>
- </a-alert>
- <!-- 列表 -->
- <s-table
- class="sTable"
- ref="table"
- size="default"
- :rowKey="(record) => record.id"
- :columns="columns"
- :data="loadData"
- :scroll="{ x: 2050, y:tableHeight }"
- bordered>
- <!-- 销售单号 -->
- <template slot="salesBillNo" slot-scope="text, record">
- <span style="color: #ed1c24;cursor: pointer;" @click="handleDetail(record)">{{ record.salesBillNo }}</span>
- </template>
- <!-- 急件 -->
- <template slot="oosFlag" slot-scope="text, record">
- <a-tag :color="record.oosFlag==1?'red':'#ccc'" >{{ record.oosFlagDictValue }}</a-tag>
- </template>
- <!-- 财务状态 -->
- <template slot="financialStatus" slot-scope="text, record">
- <a-badge :color="text=='FINISH'?'#87d068':'gold'" :text="record.financialStatusDictValue" />
- </template>
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <a-button
- size="small"
- type="link"
- class="button-warning"
- v-if="record.billStatus == 'WAIT_AUDIT'"
- @click="handleEexamine(record)"
- >审核</a-button>
- <a-button
- size="small"
- type="link"
- v-if="record.billStatus == 'WAIT_OUT_WAREHOUSE'"
- class="button-primary"
- @click="handleSend(record)"
- >出库</a-button>
- <a-button
- size="small"
- type="link"
- class="button-info"
- v-if="record.salesBillSource == 'SALES' && record.billStatus !== 'CANCEL' && record.billStatus !== 'FINISH' && record.billStatus != 'WAIT_OUT_WAREHOUSE'"
- @click="handleEdit(record)"
- >
- 编辑
- </a-button>
- <a-button
- size="small"
- type="link"
- class="button-error"
- v-if="record.salesBillSource == 'SALES' && record.billStatus !== 'FINISH' && record.financialStatus !== 'FINISH'"
- @click="handleDel(record)"
- >
- 删除
- </a-button>
- <a-button
- size="small"
- type="link"
- class="button-info"
- v-if="record.salesBillSource == 'PURCHASE' && record.billStatus !== 'CANCEL' && record.billStatus !== 'FINISH' && record.billStatus != 'WAIT_OUT_WAREHOUSE'&& record.billStatus != 'AUDIT_REJECT'"
- @click="handleEdit(record)"
- >
- 改单
- </a-button>
- <a-button
- size="small"
- type="link"
- class="button-error"
- v-if="record.salesBillSource == 'PURCHASE' && record.billStatus !== 'FINISH' && record.financialStatus !== 'FINISH'&& record.billStatus != 'AUDIT_REJECT'&& record.billStatus != 'WAIT_OUT_WAREHOUSE'"
- @click="handleDel(record, 'cancel')"
- >
- 取消
- </a-button>
- <span v-if="record.billStatus == 'FINISH'||(record.salesBillSource == 'PURCHASE'&&record.billStatus == 'AUDIT_REJECT')">--</span>
- </template>
- </s-table>
- <!-- 选择客户弹框 -->
- <choose-custom-modal :show="openModal" @ok="chooseCustomOk" @cancel="openModal=false"></choose-custom-modal>
- </a-card>
- </template>
- <script>
- import moment from 'moment'
- import { STable, VSelect } from '@/components'
- import chooseCustomModal from './chooseCustomModal.vue'
- import { custAllList } from '@/api/customer'
- import { salesList, salesDel, salesWriteAudit, salesWriteStockOut, salesCount } from '@/api/sales'
- import { settleStyleQueryAll } from '@/api/settleStyle'
- export default {
- name: 'TableList',
- components: { STable, VSelect, chooseCustomModal },
- data () {
- return {
- tableHeight: 0,
- advanced: false, // 高级搜索 展开/关闭
- disabled: false, // 查询、重置按钮是否可操作
- dateFormat: 'YYYY-MM-DD',
- time: [], // 创建时间
- openModal: false, // 选择客户弹框是否显示
- custAllList: [], // 客户 下拉数据
- settleStyleList: [], // 收款方式
- // 查询参数
- queryParam: {
- buyerName: undefined, // 客户名称
- salesBillNo: '', // 销售单号
- purchaseBillNo: '', // 采购单号
- payType: undefined, // 支付方式
- settleStyleSn: undefined, // 收款方式
- billStatus: undefined, // 业务状态
- financialStatus: undefined // 财务状态
- },
- totalData: {
- totalAmount: 0,
- totalCategory: 0,
- totalQty: 0,
- totalRecord: 0
- },
- // 表头
- columns: [
- { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
- { title: '创建时间', dataIndex: 'createDate', width: 160, align: 'center' },
- { title: '来源', dataIndex: 'salesBillSourceDictValue', width: 120, align: 'center' },
- { title: '销售单号', scopedSlots: { customRender: 'salesBillNo' }, width: 210, align: 'center' },
- { title: '采购单号', dataIndex: 'purchaseBillNo', width: 210, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '客户名称', dataIndex: 'buyerName', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '总款数', dataIndex: 'totalCategory', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '总数量', dataIndex: 'totalQty', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '总售价', dataIndex: 'totalAmount', width: 100, align: 'center', customRender: function (text) { return '¥' + (text || 0) } },
- { title: '收款方式', dataIndex: 'settleStyleEntity.name', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '审核时间', dataIndex: 'auditTime', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '急件', dataIndex: 'oosFlag', scopedSlots: { customRender: 'oosFlag' }, width: 100, align: 'center' },
- { title: '业务状态', dataIndex: 'billStatusDictValue', width: 110, align: 'center' },
- { title: '财务状态', dataIndex: 'financialStatus', scopedSlots: { customRender: 'financialStatus' }, width: 110, align: 'center' },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: 220, align: 'center', fixed: 'right' }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- if (this.tableHeight == 0) {
- this.tableHeight = window.innerHeight - 440
- }
- // 创建时间
- if (this.time && this.time.length > 0) {
- this.queryParam.beginDate = moment(this.time[0]).format(this.dateFormat)
- this.queryParam.endDate = moment(this.time[1]).format(this.dateFormat)
- } else {
- this.queryParam.beginDate = undefined
- this.queryParam.endDate = undefined
- }
- // 查询总计
- salesCount(Object.assign(parameter, this.queryParam)).then(res => {
- console.log(res)
- this.totalData = Object.assign(this.totalData, res.data || {})
- })
- return salesList(Object.assign(parameter, this.queryParam)).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
- })
- }
- }
- },
- methods: {
- // 不可选日期
- disabledDate (date, dateStrings) {
- return date && date.valueOf() > Date.now()
- },
- // 新增
- handleAdd () {
- this.openModal = true
- },
- // 选择客户成功
- chooseCustomOk (data) {
- this.$router.push({ name: 'salesAdd', params: { id: data.id, sn: data.salesBillSn, priceType: data.priceType } })
- },
- // 审核
- handleEexamine (row) {
- const _this = this
- this.$confirm({
- title: '提示',
- content: '请点击下方按钮确认操作?',
- centered: true,
- closable: true,
- okText: '审核通过',
- cancelText: '审核不通过',
- onOk () {
- _this.auditOrder(row.id, 'WAIT_OUT_WAREHOUSE')
- },
- onCancel (e) {
- if (!e.triggerCancel) {
- _this.auditOrder(row.id, 'AUDIT_REJECT')
- }
- _this.$destroyAll()
- }
- })
- },
- auditOrder (id, billStatus) {
- salesWriteAudit({
- id,
- billStatus
- }).then(res => {
- if (res.status == 200) {
- this.$message.success(res.message)
- this.$refs.table.refresh()
- }
- })
- },
- // 出库
- handleSend (row) {
- const _this = this
- this.$confirm({
- title: '提示',
- content: '确认要出库吗?',
- centered: true,
- closable: true,
- onOk () {
- salesWriteStockOut({
- salesBillSn: row.salesBillSn
- }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- }
- })
- }
- })
- },
- // 详情
- handleDetail (row) {
- this.$router.push({ name: 'salesDetail', params: { sn: row.salesBillSn } })
- },
- // 编辑
- handleEdit (row) {
- this.$router.push({ name: 'salesEdit', params: { id: row.id, sn: row.salesBillSn, priceType: row.priceType } })
- },
- // 删除
- handleDel (row, type) {
- const _this = this
- let content = '确认要删除吗?'
- if (type == 'cancel') {
- content = '确认要取消吗?'
- }
- this.$confirm({
- title: '提示',
- content: content,
- centered: true,
- closable: true,
- onOk () {
- salesDel({ id: row.id }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- }
- })
- }
- })
- },
- // 客户无分页列表数据
- getCustAllList () {
- const _this = this
- custAllList().then(res => {
- if (res.status == 200) {
- _this.custAllList = res.data || []
- } else {
- _this.custAllList = []
- }
- })
- },
- // 重置
- resetSearchForm () {
- this.queryParam.buyerName = undefined
- this.queryParam.salesBillNo = ''
- this.queryParam.purchaseBillNo = ''
- this.queryParam.payType = undefined
- this.queryParam.settleStyleSn = undefined
- this.queryParam.billStatus = undefined
- this.queryParam.financialStatus = undefined
- this.time = []
- this.$refs.table.refresh(true)
- },
- filterOption (input, option) {
- return (
- option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
- )
- },
- // 获取收款方式
- getSettleStyle () {
- settleStyleQueryAll().then(res => {
- if (res.status == 200) {
- this.settleStyleList = res.data
- }
- })
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {
- vm.getCustAllList()
- vm.getSettleStyle()
- })
- }
- }
- </script>
- <style lang="less">
- .ssalesManagementList-wrap{
- .sTable{
- margin-top: 15px;
- }
- }
- </style>
|