123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- <template>
- <a-card size="small" :bordered="false" class="purchaseOrderList-wrap">
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 搜索条件 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-item label="创建时间">
- <rangeDate ref="rangeDate" @change="dateChange" />
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="采购单号">
- <a-input id="purchaseOrderList-purchaseBillNo" v-model.trim="queryParam.purchaseBillNo" allowClear 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="purchaseOrderList-purchaseTargetSn"
- placeholder="请选择供应商"
- allowClear
- v-model="queryParam.purchaseTargetSn"
- :showSearch="true"
- option-filter-prop="children"
- :filter-option="filterOption"
- @change="tragetTypeChange">
- <a-select-option v-for="item in supplierList" :key="item.purchaseTargetSn" :value="item.purchaseTargetSn">{{ item.purchaseTargetName }}</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24" v-show="advanced">
- <a-form-item label="业务状态">
- <v-select
- v-model="queryParam.billStatus"
- ref="billStatus"
- id="purchaseOrderList-billStatus"
- code="PURCHASE_BILL_STATUS"
- placeholder="请选择业务状态"
- allowClear></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24" v-show="advanced">
- <a-form-item label="财务状态">
- <v-select
- v-model="queryParam.financialStatus"
- ref="financialStatus"
- id="purchaseOrderList-financialStatus"
- code="FINANCIAL_PAY_STATUS"
- placeholder="请选择财务状态"
- allowClear></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <span class="table-page-search-submitButtons">
- <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="purchaseOrderList-refresh">查询</a-button>
- <a-button style="margin-left: 8px" @click="resetSearchForm()" :disabled="disabled" id="purchaseOrderList-reset">重置</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 id="purchaseOrderList-add" type="primary" v-if="$hasPermissions('B_purchaseNew')" class="button-error" @click="handleAdd">新增</a-button>
- </div>
- <!-- alert -->
- <a-alert type="info" showIcon style="margin-bottom:15px">
- <div slot="message">共 <strong>{{ totalData.totalRecord }}</strong> 条记录,采购数量合计 <strong>{{ totalData.totalQty }}</strong> ,采购金额合计¥<strong>{{ totalData.totalAmount }}</strong> </div>
- </a-alert>
- <!-- 列表 -->
- <s-table
- class="sTable"
- ref="table"
- size="default"
- :rowKey="(record) => record.id"
- :columns="columns"
- :data="loadData"
- :scroll="{ x: 1495, y: tableHeight }"
- bordered>
- <!-- 采购单号 -->
- <template slot="purchaseBillNo" slot-scope="text, record">
- <span style="color: #ed1c24;cursor: pointer;" v-if="$hasPermissions('B_purchaseDetail')" @click="handleDetail(record)">{{ record.purchaseBillNo }}</span>
- <span v-else>{{ record.purchaseBillNo }}</span>
- </template>
- <!-- 财务状态 -->
- <template slot="financialStatus" slot-scope="text, record">
- <a-badge :color="text=='FINISH'?'#87d068':'gold'" :text="$refs.financialStatus.getNameByCode(text)" />
- </template>
- <!-- 业务状态 -->
- <template slot="billStatus" slot-scope="text, record">
- {{ $refs.billStatus.getNameByCode(text) }}
- </template>
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <a-button
- size="small"
- type="link"
- class="button-info"
- v-if="(record.billStatus == 'WAIT_SUBMIT'||record.billStatus == 'AUDIT_REJECT') && $hasPermissions('B_purchaseEdit')"
- @click="handleEdit(record)"
- >编辑</a-button>
- <a-button
- size="small"
- type="link"
- class="button-warning"
- v-if="record.billStatus == 'WAIT_PUT_WAREHOUSE'&&$hasPermissions('B_purchaseReceiving')"
- @click="handleWarehouse(record)"
- >签收入库</a-button>
- <a-button
- size="small"
- type="link"
- class="button-error"
- v-if="(record.billStatus == 'WAIT_SUBMIT'||record.billStatus == 'AUDIT_REJECT') &&$hasPermissions('B_purchaseDel')"
- @click="handleDel(record)"
- >删除</a-button>
- <span v-if="record.billStatus != 'WAIT_SUBMIT'&&record.billStatus != 'AUDIT_REJECT'&&record.billStatus != 'WAIT_PUT_WAREHOUSE'">--</span>
- </template>
- </s-table>
- </a-spin>
- <!-- 选择基本信息弹框 -->
- <basic-info-modal :openModal="openModal" @ok="handleOk" @cancel="openModal=false" />
- </a-card>
- </template>
- <script>
- import { STable, VSelect } from '@/components'
- import rangeDate from '@/views/common/rangeDate.vue'
- import basicInfoModal from './basicInfoModal.vue'
- import { purchaseList, purchaseDel, purchaseCount, purchaseTargetList } from '@/api/purchase'
- export default {
- components: { STable, VSelect, basicInfoModal, rangeDate },
- data () {
- return {
- spinning: false,
- advanced: false, // 高级搜索 展开/关闭
- disabled: false, // 查询、重置按钮是否可操作
- openModal: false, // 基本信息弹框是否显示
- supplierList: [],
- tableHeight: 0,
- // 查询参数
- queryParam: {
- purchaseBillNo: '',
- purchaseTargetSn: undefined,
- purchaseTargetType: undefined,
- billStatus: undefined,
- financialStatus: undefined,
- beginDate: '',
- endDate: ''
- },
- totalData: {
- totalRecord: 0,
- totalCategory: 0,
- totalQty: 0,
- totalAmount: 0
- },
- // 表头
- columns: [
- { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
- { title: '采购单号', scopedSlots: { customRender: 'purchaseBillNo' }, width: 220, align: 'center' },
- { title: '创建时间', dataIndex: 'createDate', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '供应商', dataIndex: 'purchaseTargetName', 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: 'discountedAmount', width: 115, align: 'center', customRender: function (text) { return '¥' + (text || 0) } },
- { title: '业务状态', dataIndex: 'billStatus', scopedSlots: { customRender: 'billStatus' }, width: 110, align: 'center' },
- { title: '财务状态', dataIndex: 'financialStatus', scopedSlots: { customRender: 'financialStatus' }, width: 100, align: 'center' },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: 200, align: 'center', fixed: 'right' }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- if (this.tableHeight == 0) {
- this.tableHeight = window.innerHeight - 440
- }
- // 获取统计数据
- this.getTotalData(Object.assign(parameter, this.queryParam))
- return purchaseList(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: {
- getTotalData (params) {
- purchaseCount(params).then(res => {
- this.totalData = res.data || null
- })
- },
- // 供应商change
- tragetTypeChange (val) {
- const ind = this.supplierList.findIndex(item => item.purchaseTargetSn == val)
- if (ind != -1) {
- this.queryParam.purchaseTargetType = this.supplierList[ind].purchaseTargetType
- }
- },
- // 时间 change
- dateChange (date) {
- this.queryParam.beginDate = date[0]
- this.queryParam.endDate = date[1]
- },
- // 新增
- handleAdd () {
- this.openModal = true
- },
- // 基本信息 保存
- handleOk (row) {
- this.$router.push({ name: `purchaseOrderAdd`, params: { sn: row.purchaseBillSn } })
- },
- // 编辑
- handleEdit (row) {
- this.$router.push({ name: `purchaseOrderEdit`, params: { sn: row.purchaseBillSn } })
- },
- // 详情
- handleDetail (row) {
- this.$router.push({ name: `purchaseOrderDetail`, params: { sn: row.purchaseBillSn } })
- },
- // 签收入库
- handleWarehouse (row) {
- this.$router.push({ name: `purchaseOrderWarehousing`, params: { sn: row.purchaseBillSn } })
- },
- // 删除
- handleDel (row) {
- const _this = this
- this.$confirm({
- title: '提示',
- content: '删除后不可恢复,确定要进行删除吗?',
- centered: true,
- onOk () {
- _this.spinning = true
- purchaseDel({
- id: row.id
- }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- _this.spinning = false
- } else {
- _this.spinning = false
- }
- })
- }
- })
- },
- // 重置
- resetSearchForm () {
- this.$refs.rangeDate.resetDate()
- this.queryParam.beginDate = ''
- this.queryParam.endDate = ''
- this.queryParam.orderBundleNo = ''
- this.queryParam.purchaseBillNo = ''
- this.queryParam.purchaseTargetSn = undefined
- this.queryParam.purchaseTargetType = undefined
- this.queryParam.billStatus = undefined
- this.queryParam.financialStatus = undefined
- this.$refs.table.refresh(true)
- },
- filterOption (input, option) {
- return (
- option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
- )
- },
- // 获取供应商数据
- getSupperList () {
- purchaseTargetList({}).then(res => {
- if (res.status == 200) {
- this.supplierList = res.data
- } else {
- this.supplierList = []
- }
- })
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {
- vm.openModal = false
- vm.getSupperList()
- })
- }
- }
- </script>
- <style lang="less">
- .purchaseOrderList-wrap{
- .sTable{
- margin-top: 15px;
- }
- }
- </style>
|