123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- <template>
- <a-card size="small" :bordered="false" class="bulkImportList-wrap">
- <a-spin :spinning="spinning" tip="Loading...">
- <div ref="tableSearch" class="table-page-search-wrapper">
- <Upload
- id="bulkImportList-attachList"
- ref="importUpload"
- :maxNums="1"
- fileType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel"
- uploadType="attach"
- :action="attachAction"
- :uploadParams="uploadParams"
- upText="选择导入文件"
- @remove="resetSearchForm"
- @change="changeImport"></Upload>
- <a :href="filePath" style="margin: 5px 0 0 15px;display: block;float: left;">
- <a-icon type="download" style="padding-right: 5px;" />下载导入模板
- </a>
- </div>
- <div class="importGuide-con">
- <div class="explain-con">
- <div class="explain-item">
- <div class="explain-tit">导入文件说明</div>
- <ul>
- <li>1) 导入的EXCEL文件中必须包含名为"供应商"、"产品品牌"、"产品编码"、"原厂编码"、"产品名称"、"产品一级分类"、"产品二级分类"、"产品三级分类"、"仓库"、"仓位"、"入库数量"、"成本价"、"售价";列顺序可忽略、行顺序可忽略。其中"供应商"、"产品品牌"、"产品编码"、"产品名称"、"仓库"、"仓位"、"入库数量"、"成本价"、"售价"内容不能为空。</li>
- <li>2) 红色底白字为错误项,对应错误原因列显示错误信息,存在错误项时不能导入,请取消修改后重新上传操作。</li>
- <li>3) 供应商/产品品牌为必填项且不能包含箭冠、箭牌、冠牌等文字,产品名称为必填项。</li>
- <li>4) 支持上传文件格式:.xls、.xlsx。</li>
- </ul>
- </div>
- </div>
- </div>
- <!-- 列表 -->
- <s-table
- class="sTable fixPagination"
- ref="table"
- :style="{ height: tableHeight+84.5+'px' }"
- size="small"
- :rowClassName="(record, index) => record.isError==1 ? 'redBg-row':''"
- :rowKey="(record) => record.id"
- :columns="columns"
- :data="loadData"
- :scroll="{ x: 1680, y: tableHeight }"
- :defaultLoadData="false"
- bordered>
- </s-table>
- <div class="btn-con" v-if="uploadData && uploadData.stockImportSn">
- <a-button
- id="productInfoList-batchAudit"
- type="primary"
- class="button-warning"
- @click="handleConfirm"
- style="margin: 0 15px;">确认导入</a-button>
- <a-button
- id="productInfoList-batchLaunch"
- type="primary"
- class="button-primary"
- @click="handleCancel"
- style="margin: 0 15px;">取消导入</a-button>
- <a-button
- id="productInfoList-batchDownline"
- type="primary"
- class="button-grey"
- @click="handleExportError"
- style="margin: 0 15px;">导出错误项</a-button>
- </div>
- </a-spin>
- </a-card>
- </template>
- <script>
- import { STable, Upload } from '@/components'
- import { stockImportList, stockImportFinish, stockImportCancel, stockImportExportError } from '@/api/stockImport'
- import moment from 'moment'
- export default {
- components: { STable, Upload },
- data () {
- return {
- spinning: false,
- exportLoading: false, // 导出loading
- tableHeight: 0,
- queryParam: {}, // 查询参数
- // 表头
- columns: [
- { title: '序号', dataIndex: 'no', width: 50, align: 'center' },
- { title: '产品编码', dataIndex: 'productCode', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '原厂编码', dataIndex: 'productOrigCode', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '产品品牌', dataIndex: 'productBrandName', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '供应商', dataIndex: 'supplierName', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '产品名称', dataIndex: 'productName', align: 'center', customRender: function (text) { return text || '--' } },
- { title: '产品一级分类', dataIndex: 'productTypeName1', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '产品二级分类', dataIndex: 'productTypeName2', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '产品三级分类', dataIndex: 'productTypeName3', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '仓库', dataIndex: 'warehouseName', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '仓位', dataIndex: 'warehouseLocationName', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '入库数量', dataIndex: 'putQty', width: 80, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '成本价', dataIndex: 'cost', width: 80, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '售价', dataIndex: 'terminalPrice', width: 80, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '错误原因', dataIndex: 'errorMsg', width: 150, align: 'center', customRender: function (text) { return text || '--' } }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.spinning = true
- return stockImportList(Object.assign(parameter, { stockImportSn: this.uploadData && this.uploadData.stockImportSn })).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.spinning = false
- return data
- })
- },
- attachAction: process.env.VUE_APP_API_BASE_URL + '/stockImport/importForSpareParts',
- uploadParams: {
- savePathType: 'local'
- },
- uploadData: null,
- filePath: 'https://jianguan-images.oss-cn-beijing.aliyuncs.com/template/ShangHuProductImports.xlsx'
- }
- },
- methods: {
- // 上传文件 change
- changeImport (file) {
- if (file && JSON.parse(file).length > 0) {
- this.uploadData = JSON.parse(file)[0] || null
- if (this.uploadData && this.uploadData.stockImportSn) {
- this.$refs.table.refresh(true)
- }
- } else {
- this.uploadData = null
- }
- },
- resetSearchForm () {
- this.$refs.table.clearTable() // 清空列表数据
- this.$refs.importUpload.setFileList() // 清空导入文件
- this.uploadData = null // 清空上传数据
- },
- // 确认导入
- handleConfirm () {
- const _this = this
- this.$confirm({
- title: '提示',
- content: '您是否确认导入产品信息?',
- centered: true,
- onOk () {
- _this.spinning = true
- stockImportFinish({ stockImportSn: _this.uploadData && _this.uploadData.stockImportSn }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.resetSearchForm()
- _this.spinning = false
- } else {
- _this.spinning = false
- }
- })
- }
- })
- },
- // 取消导入
- handleCancel () {
- const _this = this
- this.$confirm({
- title: '提示',
- content: '您确认取消导入产品的信息?',
- centered: true,
- onOk () {
- _this.spinning = true
- stockImportCancel({ stockImportSn: _this.uploadData && _this.uploadData.stockImportSn }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.resetSearchForm()
- _this.spinning = false
- } else {
- _this.spinning = false
- }
- })
- }
- })
- },
- // 下载模板
- handleExport () {},
- // 导出错误项
- handleExportError () {
- const _this = this
- _this.spinning = true
- stockImportExportError({ stockImportSn: _this.uploadData && _this.uploadData.stockImportSn }).then(res => {
- _this.spinning = false
- if (res.type == 'application/json') {
- var reader = new FileReader()
- reader.addEventListener('loadend', function () {
- const obj = JSON.parse(reader.result)
- _this.$notification.error({
- message: '提示',
- description: obj.message
- })
- })
- reader.readAsText(res)
- } else {
- this.download(res)
- }
- })
- },
- download (data) {
- if (!data) { return }
- const url = window.URL.createObjectURL(new Blob([data]))
- const link = document.createElement('a')
- link.style.display = 'none'
- link.href = url
- const fname = '散件导入错误项' + moment('YYYY_MMDD')
- link.setAttribute('download', fname + '.xlsx')
- document.body.appendChild(link)
- link.click()
- },
- setTableH () {
- const tableSearchH = this.$refs.tableSearch.offsetHeight
- this.tableHeight = window.innerHeight - tableSearchH - 400
- }
- },
- mounted () {
- const _this = this
- this.$nextTick(() => { // 页面渲染完成后的回调
- _this.setTableH()
- })
- },
- watch: {
- advanced (newValue, oldValue) {
- const _this = this
- setTimeout(() => {
- _this.setTableH()
- }, 400)
- }
- },
- activated () {
- // 如果是新页签打开,则重置当前页面
- if (this.$store.state.app.isNewTab) {
- this.resetSearchForm()
- }
- },
- beforeRouteEnter (to, from, next) {
- next(vm => {})
- }
- }
- </script>
- <style lang="less">
- .bulkImportList-wrap{
- .table-page-search-wrapper{
- overflow: hidden;
- .upload-file{
- height: auto;
- margin-bottom: 10px;
- .ant-btn{
- background-color: #f30;
- border-color: #f30;
- margin: 0 5px;
- font-size: 12px;
- color: #fff;
- }
- }
- }
- .importGuide-con{
- .explain-con{
- .explain-item{
- margin-bottom: 10px;
- .explain-tit{
- font-weight: bold;
- span{
- display: inline-block;
- width: 18px;
- height: 18px;
- line-height: 16px;
- text-align: center;
- margin-right: 5px;
- border-radius: 50%;
- border: 1px solid rgba(0, 0, 0, 0.3);
- }
- }
- p{
- margin: 8px 0;
- padding-left: 23px;
- }
- ul{
- list-style: none;
- padding: 0;
- padding-left: 23px;
- margin: 0;
- li{
- line-height: 26px;
- font-size: 12px;
- }
- }
- }
- }
- }
- .redBg-row{
- background-color: #F39494;
- }
- .btn-con{
- text-align: center;
- }
- }
- </style>
|