<template>
|
<j-modal
|
:title="title"
|
:width="width"
|
:visible="visible"
|
:maskClosable="false"
|
:forceRender="true"
|
:style="modalStyle"
|
fullscreen
|
switchFullscreen
|
@cancel="handleCancel"
|
wrapClassName="ant-modal-cust-warp">
|
<template slot="footer">
|
<!--打印-->
|
<a-button key="back" @click="handleCancel">取消(ESC)</a-button>
|
<template v-if="isShowPrintBtn">
|
<a-button v-if="billPrintFlag" @click="handlePrint">三联打印预览</a-button>
|
<!--此处为解决缓存问题-->
|
<a-button v-if="billType === '零售出库'" v-print="'#retailOutPrint'">普通打印</a-button>
|
<a-button v-if="billType === '零售退货入库'" v-print="'#retailBackPrint'">普通打印</a-button>
|
<a-button v-if="billType === '请购单'" v-print="'#purchaseApplyPrint'">普通打印</a-button>
|
<a-button v-if="billType === '采购订单'" v-print="'#purchaseOrderPrint'">普通打印</a-button>
|
<a-button v-if="billType === '采购入库'" v-print="'#purchaseInPrint'">普通打印</a-button>
|
<a-button v-if="billType === '采购退货出库'" v-print="'#purchaseBackPrint'">普通打印</a-button>
|
<a-button v-if="billType === '销售订单'" v-print="'#saleOrderPrint'">普通打印</a-button>
|
<a-button v-if="billType === '销售出库'" v-print="'#saleOutPrint'">普通打印</a-button>
|
<a-button v-if="billType === '销售退货入库'" v-print="'#saleBackPrint'">普通打印</a-button>
|
<a-button v-if="billType === '其它入库'" v-print="'#otherInPrint'">普通打印</a-button>
|
<a-button v-if="billType === '其它出库'" v-print="'#otherOutPrint'">普通打印</a-button>
|
<a-button v-if="billType === '调拨出库'" v-print="'#allocationOutPrint'">普通打印</a-button>
|
<a-button v-if="billType === '组装单'" v-print="'#assemblePrint'">普通打印</a-button>
|
<a-button v-if="billType === '拆卸单'" v-print="'#disassemblePrint'">普通打印</a-button>
|
<a-button v-if="billType === '盘点复盘'" v-print="'#stockCheckReplayPrint'">普通打印</a-button>
|
</template>
|
<!--导出Excel-->
|
<a-button v-if="billType === '零售出库'||billType === '零售退货入库'" @click="retailExportExcel()">导出</a-button>
|
<a-button v-if="billType === '请购单'" @click="applyExportExcel()">导出</a-button>
|
<a-button v-if="billType === '采购订单'||billType === '销售订单'" @click="orderExportExcel()">导出</a-button>
|
<a-button v-if="billType === '采购入库'||billType === '采购退货出库'||billType === '销售出库'||billType === '销售退货入库'"
|
@click="purchaseSaleExportExcel()">导出</a-button>
|
<a-button v-if="billType === '其它入库'||billType === '其它出库'" @click="otherExportExcel()">导出</a-button>
|
<a-button v-if="billType === '调拨出库'" @click="allocationOutExportExcel()">导出</a-button>
|
<a-button v-if="billType === '组装单'||billType === '拆卸单'" @click="assembleExportExcel()">导出</a-button>
|
<a-button v-if="billType === '盘点复盘'" @click="stockCheckReplayExportExcel()">导出</a-button>
|
<!--反审核-->
|
<a-button v-if="checkFlag && isCanBackCheck && model.status==='1'" @click="handleBackCheck()">反审核</a-button>
|
</template>
|
<a-form :form="form">
|
<!--零售出库-->
|
<template v-if="billType === '零售出库'">
|
<section ref="print" id="retailOutPrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="会员卡号">
|
<a-input v-decorator="['id']" hidden/>
|
{{model.organName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="收款类型">
|
{{model.payType}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="18" :md="12" :sm="24">
|
<div :style="tableWidthRetail">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
</a-col>
|
<a-col :span="6">
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="6" :sm="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据金额">
|
{{model.changeAmount}}
|
</a-form-item>
|
</a-col>
|
<a-col :lg="24" :md="6" :sm="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="收款金额">
|
{{model.getAmount}}
|
</a-form-item>
|
</a-col>
|
<a-col :lg="24" :md="6" :sm="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="找零">
|
{{model.backAmount}}
|
</a-form-item>
|
</a-col>
|
<a-col :lg="24" :md="6" :sm="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="收款账户">
|
{{model.accountName}}
|
</a-form-item>
|
</a-col>
|
<a-col v-if="model.hasBackFlag" :lg="24" :md="6" :sm="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="退货单号">
|
<template v-for="(item, index) in linkNumberList">
|
<a @click="myHandleDetail(item.number)">{{item.number}}</a><br/>
|
</template>
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--零售退货-->
|
<template v-else-if="billType === '零售退货入库'">
|
<section ref="print" id="retailBackPrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="会员卡号">
|
<a-input v-decorator="['id']" hidden/>
|
{{model.organName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="关联单据">
|
<a @click="myHandleDetail(model.linkNumber)">{{model.linkNumber}}</a>
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="18" :md="12" :sm="24">
|
<div :style="tableWidthRetail">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
</a-col>
|
<a-col :span="6">
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="6" :sm="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据金额">
|
{{model.changeAmount}}
|
</a-form-item>
|
</a-col>
|
<a-col :lg="24" :md="6" :sm="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="付款金额">
|
{{model.getAmount}}
|
</a-form-item>
|
</a-col>
|
<a-col :lg="24" :md="6" :sm="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="找零">
|
{{model.backAmount}}
|
</a-form-item>
|
</a-col>
|
<a-col :lg="24" :md="6" :sm="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="付款账户">
|
{{model.accountName}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--请购单-->
|
<template v-else-if="billType === '请购单'">
|
<section ref="print" id="purchaseApplyPrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
</a-col>
|
<a-col :span="6">
|
</a-col>
|
</a-row>
|
<div :style="tableWidth">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--采购订单-->
|
<template v-else-if="billType === '采购订单'">
|
<section ref="print" id="purchaseOrderPrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="供应商">
|
<a-input v-decorator="['id']" hidden/>
|
{{model.organName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6" v-if="model.linkApply">
|
<a-form-item :labelCol="{xs: { span: 24 },sm: { span: 6 }}" :wrapperCol="wrapperCol" label="关联请购单">
|
<a @click="myHandleDetail(model.linkApply)">{{model.linkApply}}</a>
|
</a-form-item>
|
</a-col>
|
<a-col :span="6" v-if="model.linkNumber">
|
<a-form-item v-if="purchaseBySaleFlag" :labelCol="labelCol" :wrapperCol="wrapperCol" label="关联订单">
|
{{model.linkNumber}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<div :style="tableWidth">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="优惠率">
|
{{model.discount}}%
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="付款优惠">
|
{{model.discountMoney}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="{xs: { span: 24 },sm: { span: 6 }}" :wrapperCol="wrapperCol" label="优惠后金额">
|
{{model.discountLastMoney}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6"></a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="结算账户">
|
{{model.accountName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="支付订金">
|
{{model.changeAmount}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6"></a-col>
|
<a-col :span="6"></a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--采购入库-->
|
<template v-else-if="billType === '采购入库'">
|
<section ref="print" id="purchaseInPrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="供应商">
|
<a-input v-decorator="['id']" hidden/>
|
{{model.organName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="关联订单">
|
<a @click="myHandleDetail(model.linkNumber)">{{model.linkNumber}}</a>
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<div :style="tableWidth">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="优惠率">
|
{{model.discount}}%
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="付款优惠">
|
{{model.discountMoney}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="{xs: { span: 24 },sm: { span: 6 }}" :wrapperCol="wrapperCol" label="优惠后金额">
|
{{model.discountLastMoney}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="其它费用">
|
{{model.otherMoney}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="结算账户">
|
{{model.accountName}}
|
</a-form-item>
|
</a-col>
|
<a-col v-if="model.deposit" :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="扣除订金">
|
{{model.deposit}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="本次付款">
|
{{model.changeAmount}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="本次欠款">
|
{{model.debt}}
|
</a-form-item>
|
</a-col>
|
<a-col v-if="model.hasBackFlag" :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="退货单号">
|
<template v-for="(item, index) in linkNumberList">
|
<a @click="myHandleDetail(item.number)">{{item.number}}</a><br/>
|
</template>
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col v-if="financialBillNoList.length" :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="付款单号">
|
<template v-for="(item, index) in financialBillNoList">
|
<a @click="myHandleFinancialDetail(item.billNo)">{{item.billNo}}</a><br/>
|
</template>
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--采购退货-->
|
<template v-else-if="billType === '采购退货出库'">
|
<section ref="print" id="purchaseBackPrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="供应商">
|
<a-input v-decorator="['id']" hidden/>
|
{{model.organName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="关联单据">
|
<a @click="myHandleDetail(model.linkNumber)">{{model.linkNumber}}</a>
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<div :style="tableWidth">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="优惠率">
|
{{model.discount}}%
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="退款优惠">
|
{{model.discountMoney}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="{xs: { span: 24 },sm: { span: 6 }}" :wrapperCol="wrapperCol" label="优惠后金额">
|
{{model.discountLastMoney}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="其它费用">
|
{{model.otherMoney}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="结算账户">
|
{{model.accountName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="本次退款">
|
{{model.changeAmount}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="本次欠款">
|
{{model.debt}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
</a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--销售订单-->
|
<template v-else-if="billType === '销售订单'">
|
<section ref="print" id="saleOrderPrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="客户">
|
<a-input v-decorator="['id']" hidden/>
|
{{model.organName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="销售人员">
|
{{model.salesManStr}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<div :style="tableWidth">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="优惠率">
|
{{model.discount}}%
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="付款优惠">
|
{{model.discountMoney}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="{xs: { span: 24 },sm: { span: 6 }}" :wrapperCol="wrapperCol" label="优惠后金额">
|
{{model.discountLastMoney}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6"></a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="结算账户">
|
{{model.accountName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="收取订金">
|
{{model.changeAmount}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6"></a-col>
|
<a-col :span="6"></a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--销售出库-->
|
<template v-else-if="billType === '销售出库'">
|
<section ref="print" id="saleOutPrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="客户">
|
<a-input v-decorator="['id']" hidden/>
|
{{model.organName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="关联订单">
|
<a @click="myHandleDetail(model.linkNumber)">{{model.linkNumber}}</a>
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<div :style="tableWidth">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="优惠率">
|
{{model.discount}}%
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="收款优惠">
|
{{model.discountMoney}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="{xs: { span: 24 },sm: { span: 6 }}" :wrapperCol="wrapperCol" label="优惠后金额">
|
{{model.discountLastMoney}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="其它费用">
|
{{model.otherMoney}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="结算账户">
|
{{model.accountName}}
|
</a-form-item>
|
</a-col>
|
<a-col v-if="model.deposit" :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="扣除订金">
|
{{model.deposit}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="本次收款">
|
{{model.changeAmount}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="本次欠款">
|
{{model.debt}}
|
</a-form-item>
|
</a-col>
|
<a-col v-if="model.hasBackFlag" :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="退货单号">
|
<template v-for="(item, index) in linkNumberList">
|
<a @click="myHandleDetail(item.number)">{{item.number}}</a><br/>
|
</template>
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="销售人员">
|
{{model.salesManStr}}
|
</a-form-item>
|
</a-col>
|
<a-col v-if="financialBillNoList.length" :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="收款单号">
|
<template v-for="(item, index) in financialBillNoList">
|
<a @click="myHandleFinancialDetail(item.billNo)">{{item.billNo}}</a><br/>
|
</template>
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--销售退货-->
|
<template v-else-if="billType === '销售退货入库'">
|
<section ref="print" id="saleBackPrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="客户">
|
<a-input v-decorator="['id']" hidden/>
|
{{model.organName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="关联单据">
|
<a @click="myHandleDetail(model.linkNumber)">{{model.linkNumber}}</a>
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<div :style="tableWidth">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="优惠率">
|
{{model.discount}}%
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="退款优惠">
|
{{model.discountMoney}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="{xs: { span: 24 },sm: { span: 6 }}" :wrapperCol="wrapperCol" label="优惠后金额">
|
{{model.discountLastMoney}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="其它费用">
|
{{model.otherMoney}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="结算账户">
|
{{model.accountName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="本次退款">
|
{{model.changeAmount}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="本次欠款">
|
{{model.debt}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="销售人员">
|
{{model.salesManStr}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--其它入库-->
|
<template v-else-if="billType === '其它入库'">
|
<section ref="print" id="otherInPrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="供应商">
|
<a-input v-decorator="['id']" hidden/>
|
{{model.organName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item v-if="model.billType" :labelCol="labelCol" :wrapperCol="wrapperCol" label="关联单据">
|
{{model.linkNumber}} {{model.billType}}
|
</a-form-item>
|
<a-form-item v-if="!model.billType" :labelCol="labelCol" :wrapperCol="wrapperCol" label="关联单据">
|
<a @click="myHandleDetail(model.linkNumber)">{{model.linkNumber}}</a>
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<div :style="tableWidth">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--其它出库-->
|
<template v-else-if="billType === '其它出库'">
|
<section ref="print" id="otherOutPrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="客户">
|
<a-input v-decorator="['id']" hidden/>
|
{{model.organName}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item v-if="model.billType" :labelCol="labelCol" :wrapperCol="wrapperCol" label="关联单据">
|
{{model.linkNumber}} {{model.billType}}
|
</a-form-item>
|
<a-form-item v-if="!model.billType" :labelCol="labelCol" :wrapperCol="wrapperCol" label="关联单据">
|
<a @click="myHandleDetail(model.linkNumber)">{{model.linkNumber}}</a>
|
</a-form-item>
|
</a-col>
|
</a-row>
|
<div :style="tableWidth">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--调拨出库-->
|
<template v-else-if="billType === '调拨出库'">
|
<section ref="print" id="allocationOutPrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6"></a-col>
|
<a-col :span="6"></a-col>
|
</a-row>
|
<div :style="tableWidth">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--组装单-->
|
<template v-else-if="billType === '组装单'">
|
<section ref="print" id="assemblePrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6"></a-col>
|
<a-col :span="6"></a-col>
|
</a-row>
|
<div :style="tableWidth">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--拆卸单-->
|
<template v-else-if="billType === '拆卸单'">
|
<section ref="print" id="disassemblePrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6"></a-col>
|
<a-col :span="6"></a-col>
|
</a-row>
|
<div :style="tableWidth">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</section>
|
</template>
|
<!--盘点复盘-->
|
<template v-else-if="billType === '盘点复盘'">
|
<section ref="print" id="stockCheckReplayPrint">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据日期">
|
{{model.operTimeStr}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="单据编号">
|
{{model.number}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6">
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="关联单据">
|
{{model.linkNumber}}
|
</a-form-item>
|
</a-col>
|
<a-col :span="6"></a-col>
|
</a-row>
|
<div :style="tableWidth">
|
<a-table
|
ref="table"
|
size="middle"
|
bordered
|
rowKey="id"
|
:pagination="false"
|
:loading="loading"
|
:columns="columns"
|
:dataSource="dataSource">
|
<template slot="customBarCode" slot-scope="text, record">
|
<div :style="record.imgName?'float:left;line-height:30px':'float:left;'">{{record.barCode}}</div>
|
<a-popover placement="right" trigger="click">
|
<template slot="content"><img :src="getImgUrl(record.imgName, record.imgLarge)" width="500px" /></template>
|
<div class="item-info" v-if="record.imgName"><img v-if="record.imgName" :src="getImgUrl(record.imgName, record.imgSmall)" class="item-img" title="查看大图" /></div>
|
</a-popover>
|
</template>
|
</a-table>
|
</div>
|
<a-row class="form-row" :gutter="24">
|
<a-col :lg="24" :md="24" :sm="24">
|
<a-form-item :labelCol="labelCol" :wrapperCol="{xs: { span: 24 },sm: { span: 24 }}" label="" style="padding:20px 10px;">
|
{{model.remark}}
|
</a-form-item>
|
</a-col>
|
</a-row>
|
</section>
|
</template>
|
<template v-if="fileList && fileList.length>0">
|
<a-row class="form-row" :gutter="24">
|
<a-col :span="10">
|
<a-form-item :labelCol="{xs: { span: 24 },sm: { span: 3 }}" :wrapperCol="{xs: { span: 24 },sm: { span: 21 }}" label="附件">
|
<j-upload v-model="fileList" bizPath="bill" :disabled="true" :buttonVisible="false"></j-upload>
|
</a-form-item>
|
</a-col>
|
<a-col :span="14"></a-col>
|
</a-row>
|
</template>
|
</a-form>
|
<bill-print-iframe ref="modalDetail"></bill-print-iframe>
|
<financial-detail ref="financialDetailModal"></financial-detail>
|
</j-modal>
|
</template>
|
|
<script>
|
import pick from 'lodash.pick'
|
import { getAction, postAction, getFileAccessHttpUrl } from '@/api/manage'
|
import { findBillDetailByNumber, findFinancialDetailByNumber, getPlatformConfigByKey, getCurrentSystemConfig} from '@/api/api'
|
import { getMpListShort, getCheckFlag, exportXlsPost } from "@/utils/util"
|
import BillPrintIframe from './BillPrintIframe'
|
import FinancialDetail from '../../financial/dialog/FinancialDetail'
|
import JUpload from '@/components/jeecg/JUpload'
|
import Vue from 'vue'
|
export default {
|
name: 'BillDetail',
|
components: {
|
BillPrintIframe,
|
FinancialDetail,
|
JUpload
|
},
|
data () {
|
return {
|
title: "详情",
|
width: '1600px',
|
visible: false,
|
modalStyle: '',
|
model: {},
|
isCanBackCheck: true,
|
billType: '',
|
billPrintFlag: false,
|
fileList: [],
|
purchaseBySaleFlag: false,
|
linkNumberList: [],
|
financialBillNoList: [],
|
/* 原始反审核是否开启 */
|
checkFlag: true,
|
/* 是否显示打印按钮 */
|
isShowPrintBtn: true,
|
tableWidth: {
|
'width': '1700px'
|
},
|
tableWidthRetail: {
|
'width': '1200px'
|
},
|
labelCol: {
|
xs: { span: 24 },
|
sm: { span: 5 },
|
},
|
wrapperCol: {
|
xs: { span: 24 },
|
sm: { span: 16 },
|
},
|
form: this.$form.createForm(this),
|
loading: false,
|
dataSource: [],
|
url: {
|
detailList: '/depotItem/getDetailList',
|
batchSetStatusUrl: "/depotHead/batchSetStatus"
|
},
|
//表头
|
columns:[],
|
//列定义
|
defColumns: [],
|
retailOutColumns: [
|
{ title: '仓库名称', dataIndex: 'depotName'},
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '序列号', dataIndex: 'snList', width:300},
|
{ title: '批号', dataIndex: 'batchNumber'},
|
{ title: '有效期', dataIndex: 'expirationDate'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '重量', dataIndex: 'weight'},
|
{ title: '仓位货架', dataIndex: 'position'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
retailBackColumns: [
|
{ title: '仓库名称', dataIndex: 'depotName'},
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '序列号', dataIndex: 'snList', width:300},
|
{ title: '批号', dataIndex: 'batchNumber'},
|
{ title: '有效期', dataIndex: 'expirationDate'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '重量', dataIndex: 'weight'},
|
{ title: '仓位货架', dataIndex: 'position'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
purchaseApplyColumns: [
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '已采购', dataIndex: 'finishNumber'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
purchaseOrderColumns: [
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '已采购', dataIndex: 'finishNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '税率(%)', dataIndex: 'taxRate'},
|
{ title: '税额', dataIndex: 'taxMoney'},
|
{ title: '价税合计', dataIndex: 'taxLastMoney'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
purchaseInColumns: [
|
{ title: '仓库名称', dataIndex: 'depotName'},
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '序列号', dataIndex: 'snList', width:300},
|
{ title: '批号', dataIndex: 'batchNumber'},
|
{ title: '有效期', dataIndex: 'expirationDate'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '已入库', dataIndex: 'finishNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '税率(%)', dataIndex: 'taxRate'},
|
{ title: '税额', dataIndex: 'taxMoney'},
|
{ title: '价税合计', dataIndex: 'taxLastMoney'},
|
{ title: '重量', dataIndex: 'weight'},
|
{ title: '仓位货架', dataIndex: 'position'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
purchaseBackColumns: [
|
{ title: '仓库名称', dataIndex: 'depotName'},
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '序列号', dataIndex: 'snList', width:300},
|
{ title: '批号', dataIndex: 'batchNumber'},
|
{ title: '有效期', dataIndex: 'expirationDate'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '已出库', dataIndex: 'finishNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '税率(%)', dataIndex: 'taxRate'},
|
{ title: '税额', dataIndex: 'taxMoney'},
|
{ title: '价税合计', dataIndex: 'taxLastMoney'},
|
{ title: '重量', dataIndex: 'weight'},
|
{ title: '仓位货架', dataIndex: 'position'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
saleOrderColumns: [
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '已销售', dataIndex: 'finishNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '税率(%)', dataIndex: 'taxRate'},
|
{ title: '税额', dataIndex: 'taxMoney'},
|
{ title: '价税合计', dataIndex: 'taxLastMoney'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
saleOutColumns: [
|
{ title: '仓库名称', dataIndex: 'depotName'},
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '序列号', dataIndex: 'snList', width:300},
|
{ title: '批号', dataIndex: 'batchNumber'},
|
{ title: '有效期', dataIndex: 'expirationDate'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '已出库', dataIndex: 'finishNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '税率(%)', dataIndex: 'taxRate'},
|
{ title: '税额', dataIndex: 'taxMoney'},
|
{ title: '价税合计', dataIndex: 'taxLastMoney'},
|
{ title: '重量', dataIndex: 'weight'},
|
{ title: '仓位货架', dataIndex: 'position'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
saleBackColumns: [
|
{ title: '仓库名称', dataIndex: 'depotName'},
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '序列号', dataIndex: 'snList', width:300},
|
{ title: '批号', dataIndex: 'batchNumber'},
|
{ title: '有效期', dataIndex: 'expirationDate'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '已入库', dataIndex: 'finishNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '税率(%)', dataIndex: 'taxRate'},
|
{ title: '税额', dataIndex: 'taxMoney'},
|
{ title: '价税合计', dataIndex: 'taxLastMoney'},
|
{ title: '重量', dataIndex: 'weight'},
|
{ title: '仓位货架', dataIndex: 'position'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
otherInColumns: [
|
{ title: '仓库名称', dataIndex: 'depotName'},
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '序列号', dataIndex: 'snList', width:300},
|
{ title: '批号', dataIndex: 'batchNumber'},
|
{ title: '有效期', dataIndex: 'expirationDate'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '重量', dataIndex: 'weight'},
|
{ title: '仓位货架', dataIndex: 'position'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
otherOutColumns: [
|
{ title: '仓库名称', dataIndex: 'depotName'},
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '序列号', dataIndex: 'snList', width:300},
|
{ title: '批号', dataIndex: 'batchNumber'},
|
{ title: '有效期', dataIndex: 'expirationDate'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '重量', dataIndex: 'weight'},
|
{ title: '仓位货架', dataIndex: 'position'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
allocationOutColumns: [
|
{ title: '仓库名称', dataIndex: 'depotName'},
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '调入仓库', dataIndex: 'anotherDepotName'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '重量', dataIndex: 'weight'},
|
{ title: '仓位货架', dataIndex: 'position'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
assembleColumns: [
|
{ title: '商品类型', dataIndex: 'mType'},
|
{ title: '仓库名称', dataIndex: 'depotName'},
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
disassembleColumns: [
|
{ title: '商品类型', dataIndex: 'mType'},
|
{ title: '仓库名称', dataIndex: 'depotName'},
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '颜色', dataIndex: 'color'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '备注', dataIndex: 'remark'}
|
],
|
stockCheckReplayColumns: [
|
{ title: '仓库名称', dataIndex: 'depotName'},
|
{ title: '条码', dataIndex: 'barCode'},
|
{ title: '名称', dataIndex: 'name'},
|
{ title: '规格', dataIndex: 'standard'},
|
{ title: '型号', dataIndex: 'model'},
|
{ title: '品牌', dataIndex: 'brand'},
|
{ title: '制造商', dataIndex: 'mfrs'},
|
{ title: '扩展信息', dataIndex: 'materialOther'},
|
{ title: '库存', dataIndex: 'stock'},
|
{ title: '单位', dataIndex: 'unit'},
|
{ title: '多属性', dataIndex: 'sku'},
|
{ title: '数量', dataIndex: 'operNumber'},
|
{ title: '单价', dataIndex: 'unitPrice'},
|
{ title: '金额', dataIndex: 'allPrice'},
|
{ title: '备注', dataIndex: 'remark'}
|
]
|
}
|
},
|
created () {
|
let realScreenWidth = window.screen.width
|
this.width = realScreenWidth<1500?'1200px':'1600px'
|
this.tableWidth = {
|
'width': '100%'
|
}
|
this.tableWidthRetail = {
|
'width': '100%'
|
}
|
},
|
methods: {
|
initSetting(record, type, ds) {
|
if (type === '零售出库') {
|
this.defColumns = this.retailOutColumns
|
} else if (type === '零售退货入库') {
|
this.defColumns = this.retailBackColumns
|
} else if (type === '请购单') {
|
this.defColumns = this.purchaseApplyColumns
|
} else if (type === '采购订单') {
|
this.defColumns = this.purchaseOrderColumns
|
} else if (type === '采购入库') {
|
this.defColumns = this.purchaseInColumns
|
} else if (type === '采购退货出库') {
|
this.defColumns = this.purchaseBackColumns
|
} else if (type === '销售订单') {
|
this.defColumns = this.saleOrderColumns
|
} else if (type === '销售出库') {
|
this.defColumns = this.saleOutColumns
|
} else if (type === '销售退货入库') {
|
this.defColumns = this.saleBackColumns
|
} else if (type === '其它入库') {
|
this.defColumns = this.otherInColumns
|
} else if (type === '其它出库') {
|
this.defColumns = this.otherOutColumns
|
} else if (type === '调拨出库') {
|
this.defColumns = this.allocationOutColumns
|
} else if (type === '组装单') {
|
this.defColumns = this.assembleColumns
|
} else if (type === '拆卸单') {
|
this.defColumns = this.disassembleColumns
|
} else if (type === '盘点复盘') {
|
this.defColumns = this.stockCheckReplayColumns
|
}
|
//判断序列号、批号、有效期、多属性、重量、仓位货架是否有值
|
let needAddkeywords = []
|
for (let i = 0; i < ds.length; i++) {
|
if(ds[i].snList) {
|
needAddkeywords.push('snList')
|
}
|
if(ds[i].batchNumber) {
|
needAddkeywords.push('batchNumber')
|
}
|
if(ds[i].expirationDate) {
|
needAddkeywords.push('expirationDate')
|
}
|
if(ds[i].sku) {
|
needAddkeywords.push('sku')
|
}
|
if(ds[i].weight) {
|
needAddkeywords.push('weight')
|
}
|
if(ds[i].position) {
|
needAddkeywords.push('position')
|
}
|
if(ds[i].brand) {
|
needAddkeywords.push('brand')
|
}
|
if(ds[i].mfrs) {
|
needAddkeywords.push('mfrs')
|
}
|
}
|
let currentCol = [{title:'#',dataIndex:'',align:'center',customRender:function(t,r,index){return parseInt(index)+1;}}]
|
if(record.status === '3') {
|
//部分采购|部分销售的时候显示全部列
|
for(let i=0; i<this.defColumns.length; i++){
|
currentCol.push(this.defColumns[i])
|
}
|
this.columns = currentCol
|
} else if(record.purchaseStatus === '3') {
|
//将已出库的标题转为已采购,针对销售订单转采购订单的场景
|
for(let i=0; i<this.defColumns.length; i++){
|
let info = {}
|
info.title = this.defColumns[i].title
|
info.dataIndex = this.defColumns[i].dataIndex
|
if(this.defColumns[i].width) {
|
info.width = this.defColumns[i].width
|
}
|
if(this.defColumns[i].dataIndex === 'finishNumber') {
|
info.title = '已采购'
|
}
|
if(this.defColumns[i].dataIndex === 'barCode') {
|
info.scopedSlots = { customRender: 'customBarCode' }
|
}
|
currentCol.push(info)
|
}
|
this.columns = currentCol
|
} else {
|
for(let i=0; i<this.defColumns.length; i++){
|
//移除列
|
let needRemoveKeywords = ['finishNumber','snList','batchNumber','expirationDate','sku','weight','position','brand','mfrs']
|
if(needRemoveKeywords.indexOf(this.defColumns[i].dataIndex)===-1) {
|
let info = {}
|
info.title = this.defColumns[i].title
|
info.dataIndex = this.defColumns[i].dataIndex
|
if(this.defColumns[i].width) {
|
info.width = this.defColumns[i].width
|
}
|
if(this.defColumns[i].dataIndex === 'barCode') {
|
info.scopedSlots = { customRender: 'customBarCode' }
|
}
|
currentCol.push(info)
|
}
|
//添加有数据的列
|
if(needAddkeywords.indexOf(this.defColumns[i].dataIndex)>-1) {
|
let info = {}
|
info.title = this.defColumns[i].title
|
info.dataIndex = this.defColumns[i].dataIndex
|
if(this.defColumns[i].width) {
|
info.width = this.defColumns[i].width
|
}
|
currentCol.push(info)
|
}
|
}
|
this.columns = currentCol
|
}
|
},
|
initPlatform() {
|
getPlatformConfigByKey({"platformKey": "bill_print_flag"}).then((res)=> {
|
if (res && res.code === 200) {
|
if(this.billType === '零售出库'||this.billType === '零售退货入库'||this.billType === '请购单'||
|
this.billType === '采购订单'||this.billType === '采购入库'||this.billType === '采购退货出库'||
|
this.billType === '销售订单'||this.billType === '销售出库'||this.billType === '销售退货入库'||
|
this.billType === '其它入库'||this.billType === '其它出库'||this.billType === '调拨出库'||
|
this.billType === '组装单'||this.billType === '拆卸单') {
|
this.billPrintFlag = res.data.platformValue==='1'?true:false
|
}
|
}
|
})
|
},
|
getSystemConfig() {
|
getCurrentSystemConfig().then((res) => {
|
if(res.code === 200 && res.data){
|
this.purchaseBySaleFlag = res.data.purchaseBySaleFlag==='1'?true:false
|
let multiBillType = res.data.multiBillType
|
let multiLevelApprovalFlag = res.data.multiLevelApprovalFlag
|
this.checkFlag = getCheckFlag(multiBillType, multiLevelApprovalFlag, this.prefixNo)
|
if(res.data.auditPrintFlag==='1') {
|
if(this.model.status === '0' || this.model.status === '9') {
|
this.isShowPrintBtn = false
|
} else {
|
this.isShowPrintBtn = true
|
}
|
} else {
|
this.isShowPrintBtn = true
|
}
|
}
|
})
|
},
|
getBillListByLinkNumber(number) {
|
getAction('/depotHead/getBillListByLinkNumber', {number: number}).then(res => {
|
if(res && res.code === 200){
|
this.linkNumberList = res.data
|
}
|
})
|
},
|
getFinancialBillNoByBillId(billId) {
|
getAction('/accountHead/getFinancialBillNoByBillId', {billId: billId}).then(res => {
|
if(res && res.code === 200){
|
this.financialBillNoList = res.data
|
}
|
})
|
},
|
show(record, type, prefixNo) {
|
//查询单条单据信息
|
findBillDetailByNumber({ number: record.number }).then((res) => {
|
if (res && res.code === 200) {
|
let item = res.data
|
this.billType = type
|
this.prefixNo = prefixNo
|
//附件下载
|
this.fileList = item.fileName
|
this.visible = true
|
this.modalStyle = 'top:20px;height: 95%;'
|
this.model = Object.assign({}, item)
|
if (this.model.backAmount) {
|
this.model.getAmount = (this.model.changeAmount + this.model.backAmount).toFixed(2)
|
} else {
|
this.model.getAmount = this.model.changeAmount
|
}
|
this.model.debt = (this.model.discountLastMoney + this.model.otherMoney - (this.model.deposit + this.model.changeAmount)).toFixed(2)
|
this.$nextTick(() => {
|
this.form.setFieldsValue(pick(this.model, 'id'))
|
});
|
let showType = 'basic'
|
if(item.subType === '采购' || item.subType === '采购退货' || item.subType === '销售' || item.subType === '销售退货') {
|
if (item.status === '3') {
|
showType = 'other'
|
}
|
} else {
|
if (item.status === '3') {
|
showType = 'basic'
|
} else if (item.purchaseStatus === '3') {
|
showType = 'purchase'
|
}
|
}
|
let isReadOnly = '1'
|
if(item.subType === '组装单' || item.subType === '拆卸单') {
|
isReadOnly = '0'
|
}
|
let params = {
|
headerId: this.model.id,
|
mpList: getMpListShort(Vue.ls.get('materialPropertyList')), //扩展属性
|
linkType: showType,
|
isReadOnly: isReadOnly
|
}
|
let url = this.readOnly ? this.url.detailList : this.url.detailList;
|
this.requestSubTableData(item, type, url, params);
|
this.initPlatform()
|
this.getSystemConfig()
|
this.getBillListByLinkNumber(this.model.number)
|
this.getFinancialBillNoByBillId(this.model.id)
|
}
|
})
|
},
|
requestSubTableData(record, type, url, params, success) {
|
this.loading = true
|
getAction(url, params).then(res => {
|
if(res && res.code === 200){
|
this.dataSource = res.data.rows
|
this.initSetting(record, type, this.dataSource)
|
typeof success === 'function' ? success(res) : ''
|
}
|
}).finally(() => {
|
this.loading = false
|
})
|
},
|
handleBackCheck() {
|
let that = this
|
this.$confirm({
|
title: "确认操作",
|
content: "是否对该单据进行反审核?",
|
onOk: function () {
|
that.loading = true
|
postAction(that.url.batchSetStatusUrl, {status: '0', ids: that.model.id}).then((res) => {
|
if(res.code === 200){
|
that.$emit('ok')
|
that.loading = false
|
that.close()
|
} else {
|
that.$message.warning(res.data.message)
|
that.loading = false
|
}
|
}).finally(() => {
|
})
|
}
|
})
|
},
|
handleCancel() {
|
this.close()
|
},
|
close() {
|
this.$emit('close')
|
this.visible = false
|
this.modalStyle = ''
|
},
|
myHandleDetail(billNumber) {
|
findBillDetailByNumber({ number: billNumber }).then((res) => {
|
if (res && res.code === 200) {
|
let type = res.data.type === "其它"? "":res.data.type
|
this.show(res.data, res.data.subType + type);
|
this.title = res.data.subType + type + "-详情";
|
}
|
})
|
},
|
myHandleFinancialDetail(billNo) {
|
let that = this
|
findFinancialDetailByNumber({ billNo: billNo }).then((res) => {
|
if (res && res.code === 200) {
|
if(that.$refs.financialDetailModal) {
|
that.$refs.financialDetailModal.show(res.data, res.data.type);
|
that.$refs.financialDetailModal.title= res.data.type + "-详情";
|
}
|
}
|
})
|
},
|
getImgUrl(imgName, type) {
|
if(imgName && imgName.split(',')) {
|
type = type? type + '/':''
|
return getFileAccessHttpUrl('systemConfig/static/' + type + imgName.split(',')[0])
|
} else {
|
return ''
|
}
|
},
|
//三联打印预览
|
handlePrint() {
|
getPlatformConfigByKey({"platformKey": "bill_print_url"}).then((res)=> {
|
if (res && res.code === 200) {
|
let billPrintUrl = res.data.platformValue + '?no=' + this.model.number
|
let billPrintHeight = this.dataSource.length*50 + 600
|
this.$refs.modalDetail.show(this.model, billPrintUrl, billPrintHeight)
|
this.$refs.modalDetail.title = this.billType + "-三联打印预览"
|
}
|
})
|
},
|
//零售出库|零售退货入库
|
retailExportExcel() {
|
let list = []
|
let head = '仓库名称,条码,名称,规格,型号,颜色,扩展信息,库存,单位,序列号,批号,有效期,多属性,数量,单价,金额,备注'
|
for (let i = 0; i < this.dataSource.length; i++) {
|
let item = []
|
let ds = this.dataSource[i]
|
item.push(ds.depotName, ds.barCode, ds.name, ds.standard, ds.model, ds.color, ds.materialOther, ds.stock, ds.unit,
|
ds.snList, ds.batchNumber, ds.expirationDate, ds.sku, ds.operNumber, ds.unitPrice, ds.allPrice, ds.remark)
|
list.push(item)
|
}
|
let organName = this.model.organName? '会员卡号' + this.model.organName: ''
|
let tip = organName + ' ' + '单据日期:' + this.model.operTimeStr + ' ' + '单据编号:' + this.model.number
|
exportXlsPost(this.billType + '_' + this.model.number, '单据导出', head, tip, list)
|
},
|
//请购单
|
applyExportExcel() {
|
let list = []
|
let head = '条码,名称,规格,型号,颜色,扩展信息,单位,多属性,原数量,已采购,数量,备注'
|
for (let i = 0; i < this.dataSource.length; i++) {
|
let item = []
|
let ds = this.dataSource[i]
|
item.push(ds.barCode, ds.name, ds.standard, ds.model, ds.color, ds.materialOther, ds.unit, ds.sku,
|
ds.preNumber, ds.finishNumber, ds.operNumber, ds.remark)
|
list.push(item)
|
}
|
let tip = '单据日期:' + this.model.operTimeStr + ' ' + '单据编号:' + this.model.number
|
exportXlsPost(this.billType + '_' + this.model.number, '单据导出', head, tip, list)
|
},
|
//采购订单|销售订单
|
orderExportExcel() {
|
let list = []
|
let finishType = ''
|
let organType = ''
|
if(this.billType === '采购订单') {
|
finishType = '已入库'
|
organType = '供应商:'
|
} else if(this.billType === '销售订单') {
|
finishType = '已出库'
|
organType = '客户:'
|
}
|
let head = '条码,名称,规格,型号,颜色,扩展信息,库存,单位,多属性,数量,' + finishType + ',单价,金额,税率(%),税额,价税合计,备注'
|
for (let i = 0; i < this.dataSource.length; i++) {
|
let item = []
|
let ds = this.dataSource[i]
|
item.push(ds.barCode, ds.name, ds.standard, ds.model, ds.color, ds.materialOther, ds.stock, ds.unit, ds.sku,
|
ds.operNumber, ds.finishNumber, ds.unitPrice, ds.allPrice, ds.taxRate, ds.taxMoney, ds.taxLastMoney, ds.remark)
|
list.push(item)
|
}
|
let organName = this.model.organName? this.model.organName: ''
|
let tip = organType + organName + ' ' + '单据日期:' + this.model.operTimeStr + ' ' + '单据编号:' + this.model.number
|
exportXlsPost(this.billType + '_' + this.model.number, '单据导出', head, tip, list)
|
},
|
//采购入库|采购退货出库|销售出库|销售退货入库
|
purchaseSaleExportExcel() {
|
let list = []
|
let organType = ''
|
if(this.billType === '采购入库' || this.billType === '采购退货出库') {
|
organType = '供应商:'
|
} else if(this.billType === '销售出库' || this.billType === '销售退货入库') {
|
organType = '客户:'
|
}
|
let head = '仓库名称,条码,名称,规格,型号,颜色,扩展信息,库存,单位,序列号,批号,有效期,多属性,数量,单价,金额,税率(%),税额,价税合计,重量,备注'
|
for (let i = 0; i < this.dataSource.length; i++) {
|
let item = []
|
let ds = this.dataSource[i]
|
item.push(ds.depotName, ds.barCode, ds.name, ds.standard, ds.model, ds.color, ds.materialOther, ds.stock, ds.unit,
|
ds.snList, ds.batchNumber, ds.expirationDate, ds.sku, ds.operNumber, ds.unitPrice, ds.allPrice, ds.taxRate, ds.taxMoney, ds.taxLastMoney, ds.weight, ds.remark)
|
list.push(item)
|
}
|
let organName = this.model.organName? this.model.organName: ''
|
let linkNumber = this.model.linkNumber? this.model.linkNumber: ''
|
let tip = organType + organName + ' ' + '单据日期:' + this.model.operTimeStr + ' ' + '单据编号:' +
|
this.model.number + '' + '关联单号:' + linkNumber
|
exportXlsPost(this.billType + '_' + this.model.number, '单据导出', head, tip, list)
|
},
|
//其它入库|其它出库
|
otherExportExcel() {
|
let list = []
|
let organType = ''
|
if(this.billType === '其它入库') {
|
organType = '供应商:'
|
} else if(this.billType === '其它出库') {
|
organType = '客户:'
|
}
|
let head = '仓库名称,条码,名称,规格,型号,颜色,扩展信息,库存,单位,序列号,批号,有效期,多属性,数量,单价,金额,备注'
|
for (let i = 0; i < this.dataSource.length; i++) {
|
let item = []
|
let ds = this.dataSource[i]
|
item.push(ds.depotName, ds.barCode, ds.name, ds.standard, ds.model, ds.color, ds.materialOther, ds.stock, ds.unit,
|
ds.snList, ds.batchNumber, ds.expirationDate, ds.sku, ds.operNumber, ds.unitPrice, ds.allPrice, ds.remark)
|
list.push(item)
|
}
|
let organName = this.model.organName? this.model.organName: ''
|
let tip = organType + organName + ' ' + '单据日期:' + this.model.operTimeStr + ' ' + '单据编号:' + this.model.number
|
exportXlsPost(this.billType + '_' + this.model.number, '单据导出', head, tip, list)
|
},
|
//调拨出库
|
allocationOutExportExcel() {
|
let list = []
|
let head = '仓库名称,条码,名称,规格,型号,颜色,扩展信息,库存,调入仓库,单位,多属性,数量,单价,金额,备注'
|
for (let i = 0; i < this.dataSource.length; i++) {
|
let item = []
|
let ds = this.dataSource[i]
|
item.push(ds.depotName, ds.barCode, ds.name, ds.standard, ds.model, ds.color, ds.materialOther, ds.stock, ds.anotherDepotName, ds.unit,
|
ds.sku, ds.operNumber, ds.unitPrice, ds.allPrice, ds.remark)
|
list.push(item)
|
}
|
let tip = '单据日期:' + this.model.operTimeStr + ' ' + '单据编号:' + this.model.number
|
exportXlsPost(this.billType + '_' + this.model.number, '单据导出', head, tip, list)
|
},
|
//组装单|拆卸单
|
assembleExportExcel() {
|
let list = []
|
let head = ['商品类型,仓库名称,条码,名称,规格,型号,颜色,扩展信息,库存,单位,多属性,数量,单价,金额,备注']
|
for (let i = 0; i < this.dataSource.length; i++) {
|
let item = []
|
let ds = this.dataSource[i]
|
item.push(ds.mType, ds.depotName, ds.barCode, ds.name, ds.standard, ds.model, ds.color, ds.materialOther, ds.stock, ds.unit,
|
ds.sku, ds.operNumber, ds.unitPrice, ds.allPrice, ds.remark)
|
list.push(item)
|
}
|
let tip = '单据日期:' + this.model.operTimeStr + ' ' + '单据编号:' + this.model.number
|
exportXlsPost(this.billType + '_' + this.model.number, '单据导出', head, tip, list)
|
},
|
//盘点复盘
|
stockCheckReplayExportExcel() {
|
let list = []
|
let head = '仓库名称,条码,名称,规格,型号,扩展信息,库存,单位,多属性,数量,单价,金额,备注'
|
for (let i = 0; i < this.dataSource.length; i++) {
|
let item = []
|
let ds = this.dataSource[i]
|
item.push(ds.depotName, ds.barCode, ds.name, ds.standard, ds.model, ds.materialOther, ds.stock, ds.unit,
|
ds.sku, ds.operNumber, ds.unitPrice, ds.allPrice, ds.remark)
|
list.push(item)
|
}
|
let linkNumber = this.model.linkNumber? this.model.linkNumber: ''
|
let tip = '单据日期:' + this.model.operTimeStr + ' ' + '单据编号:' + this.model.number + '' + '关联单号:' + linkNumber
|
exportXlsPost(this.billType + '_' + this.model.number, '单据导出', head, tip, list)
|
}
|
}
|
}
|
</script>
|
|
<style scoped>
|
.item-info {
|
float:left;
|
width:30px;
|
height:30px;
|
margin-left:8px
|
}
|
.item-img {
|
cursor:pointer;
|
position: static;
|
display: block;
|
width: 100%;
|
height: 100%;
|
object-fit: cover;
|
}
|
</style>
|