123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <template>
- <div class="signWarehousingDetail-wrap">
- <a-spin :spinning="spinning" tip="Loading...">
- <a-page-header :ghost="false" :backIcon="false" @back="handleBack" class="signWarehousingDetail-cont" >
- <!-- 自定义的二级文字标题 -->
- <template slot="subTitle">
- <a id="signWarehousingDetail-back-btn" href="javascript:;" @click="handleBack"><a-icon type="left" /> 返回列表</a>
- <span class="billno">
- 单号:{{ detail&&detail.purchaseBillNo }}
- <span v-if="detail&&detail.sendBillNo">(备货单号:{{ detail&&detail.sendBillNo || '--' }})</span>
- </span>
- </template>
- <!-- 操作区,位于 title 行的行尾 -->
- <template slot="extra">
- <!-- <Print v-if="$hasPermissions('B_purchasePrint')" :disabled="localDataSource.length==0" @handlePrint="handlePrint"></Print> -->
- <a-button
- key="1"
- type="primary"
- class="button-warning"
- id="signWarehousingDetail-export-btn"
- :disabled="localDataSource.length==0"
- @click="handleExportProduct()">导出Excel</a-button>
- </template>
- </a-page-header>
- <!-- 基础信息 -->
- <a-card size="small" :bordered="false" class="purchaseOrderDetail-cont">
- <a-collapse :activeKey="['1']">
- <a-collapse-panel key="1" header="基础信息">
- <a-descriptions :column="3">
- <a-descriptions-item label="供应商">{{ (detail&&detail.purchaseTargetName) || '--' }}</a-descriptions-item>
- <a-descriptions-item label="支付方式">{{ (detail&&detail.settleStyleEntity&&detail.settleStyleEntity.name) || '--' }}</a-descriptions-item>
- <a-descriptions-item label="采购员工" v-if="detail&&detail.purchaseBillSource=='PURCHASE'">{{ detail&&detail.operatorName || '--' }}</a-descriptions-item>
- <a-descriptions-item label="收货人">{{ detail&&detail.consigneeName || '--' }}<span v-if="detail&&detail.consigneeTel">({{ detail&&detail.consigneeTel }})</span></a-descriptions-item>
- <a-descriptions-item label="收货地址">
- <div v-if="detail&&(detail.shippingAddressProvinceName || detail.shippingAddressCityName || detail.shippingAddressCountyName || detail.shippingAddress)">
- {{ detail&&detail.shippingAddressProvinceName || '' }}
- {{ detail&&detail.shippingAddressCityName || '' }}
- {{ detail&&detail.shippingAddressCountyName || '' }}
- {{ detail&&detail.shippingAddress || '' }}
- </div>
- <span v-else>--</span>
- </a-descriptions-item>
- </a-descriptions>
- </a-collapse-panel>
- </a-collapse>
- </a-card>
- <a-card size="small" :bordered="false" class="signWarehousingDetail-cont">
- <!-- 总计 -->
- <a-alert type="info" style="margin-bottom:10px">
- <div slot="message">
- 产品款数:<strong>{{ detail && (detail.totalCategory || detail.totalCategory==0) ? detail.totalCategory : '--' }}</strong>,
- 本次发货数量合计:<strong>{{ detail && (detail.totalQty || detail.totalQty==0) ? detail.totalQty : '--' }}</strong>,
- 本次发货金额合计:<strong>{{ detail && (detail.discountedAmount || detail.discountedAmount==0) ? '¥'+detail.discountedAmount : '--' }}</strong>,
- </div>
- </a-alert>
- <!-- 列表 -->
- <s-table
- class="sTable"
- ref="table"
- size="small"
- :rowKey="(record) => record.id"
- :columns="columns"
- :data="loadData"
- :defaultLoadData="false"
- bordered>
- <!-- 采购数量 -->
- <template slot="origqty" slot-scope="text, record">
- <div>{{ text }}</div>
- <div v-if="record.origqty">原采购数量:{{ record.origqty }}</div>
- </template>
- <!-- 缺货数量 -->
- <template slot="outOfStockNum" slot-scope="text, record">
- <span>{{ record.outOfStockNum }}</span>
- </template>
- </s-table>
- </a-card>
- </a-spin>
- </div>
- </template>
- <script>
- import moment from 'moment'
- import { STable, VSelect } from '@/components'
- import { purchaseDetailPrint, purchaseDetailExport, purchaseExportDetail } from '@/api/purchase'
- import { receivingDetailSn, receivingDetailList, receivingExport } from '@/api/receiving'
- import Print from '@/views/common/print.vue'
- import { hdPrint } from '@/libs/JGPrint'
- export default {
- components: { STable, VSelect, Print },
- data () {
- return {
- spinning: false,
- // 表头
- columns: [
- { title: '序号', dataIndex: 'no', width: '4%', align: 'center' },
- { title: '产品编码', dataIndex: 'dealerProductEntity.code', width: '18%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '产品名称', dataIndex: 'dealerProductEntity.name', width: '17%', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '原厂编码', dataIndex: 'dealerProductEntity.origCode', width: '16%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '采购单价', dataIndex: 'discountedPrice', width: '6%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '采购数量', dataIndex: 'qty', width: '6%', align: 'center', scopedSlots: { customRender: 'origqty' } },
- { title: '本次发货数量', dataIndex: 'shippedQty', width: '9%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '单位', dataIndex: 'dealerProductEntity.unit', width: '6%', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '本次发货金额', dataIndex: 'discountedAmount', width: '9%', align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '本次入库数量', dataIndex: 'putQty', width: '9%', align: 'center', customRender: function (text) { return text || '--' } }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- return receivingDetailList(Object.assign(parameter, { receivingBillSn: this.$route.params.sn })).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.localDataSource = data.list
- this.disabled = false
- return data
- })
- },
- detail: null, // 详情数据
- localDataSource: [],
- printerType: 'NEEDLE' // 打印机类型
- }
- },
- methods: {
- // 返回列表
- handleBack () {
- this.$router.push({ path: '/purchasingManagement/signWarehousing/list', query: { closeLastOldTab: true } })
- },
- // 详情
- getDetail () {
- receivingDetailSn({ sn: this.$route.params.sn }).then(res => {
- if (res.status == 200) {
- this.detail = res.data
- } else {
- this.detail = null
- }
- })
- },
- // 打印预览/快捷打印
- handlePrint (type, printerType) {
- const _this = this
- _this.spinning = true
- let url = purchaseDetailPrint
- let params = { sn: this.$route.params.sn, type: printerType }
- if (type == 'export') { // 导出
- url = purchaseExportDetail
- params = { sn: this.$route.params.sn }
- }
- // 打印或导出
- hdPrint(printerType, type, url, params, '备货单', function () {
- _this.spinning = false
- })
- },
- // 导出产品
- handleExportProduct () {
- const _this = this
- _this.spinning = true
- // 打印或导出
- hdPrint('', 'export', receivingExport, { sn: this.$route.params.sn }, '备货单', function () {
- _this.spinning = false
- })
- }
- },
- mounted () {
- if (!this.$store.state.app.isNewTab) { // 页签刷新时调用
- this.$refs.table.refresh(true)
- this.getDetail()
- }
- },
- activated () {
- // 如果是新页签打开或者进入新的子页(例:存在列表第2条数据编辑页页签时再打开第4条数据的编辑页),则重置当前页面
- if (this.$store.state.app.isNewTab || !this.$store.state.app.isNewSubTab) {
- this.$refs.table.refresh(true)
- this.getDetail()
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {})
- }
- }
- </script>
- <style lang="less">
- .signWarehousingDetail-cont{
- margin-bottom: 10px;
- .timeline-box{
- margin-top: 30px;
- .auxiliary-txt{
- color: #808695;
- }
- }
- }
- .signWarehousingDetail-wrap{
- .billno{
- font-size: 16px;
- font-weight: bold;
- margin: 0 15px;
- }
- }
- </style>
|