123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943 |
- <template>
- <!-- 预装箱单-成衣 列表-->
- <div id="adPaListClothes">
- <!-- 查询 -->
- <a-card :bordered="false">
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="searchQuery">
- <a-row :gutter="24">
- <!-- <a-col :md="6" :sm="8">
- <a-form-item label="单据号">
- <a-input placeholder="请输入单据号" v-model="queryParam.documentNo"></a-input>
- </a-form-item>
- </a-col> -->
- <!-- <a-col :md="6" :sm="8">
- <a-form-item label="订单号">
- <a-input placeholder="请输入订单号" v-model="queryParam.orderNumber"></a-input>
- </a-form-item>
- </a-col> -->
- <a-col :md="6" :sm="8">
- <a-form-item label="款号">
- <a-input placeholder="请输入款号" v-model="queryParam.itemNumber"></a-input>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-item label="小po">
- <a-input placeholder="请输入小po" v-model="queryParam.smallPo"></a-input>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-item label="分销点">
- <!-- <a-input placeholder="请输入分销点" v-model="queryParam.distributionPoint"></a-input> -->
- <j-search-select-tag
- placeholder="请选择分销点"
- v-model="queryParam.distributionPoint"
- dict="view_distributionpoint,distributionpoint,distributionpoint">
- </j-search-select-tag>
- </a-form-item>
- </a-col>
-
- <template v-if="toggleSearchStatus">
- <!-- <a-col :md="6" :sm="8">
- <a-form-item label="单据日期">
- <a-range-picker
- style="width: 100%"
- v-model="timeRange"
- format="YYYY-MM-DD"
- :placeholder="['开始日期', '结束日期']"
- @change="onDateChange"
- @ok="onDateOk"
- />
- </a-form-item>
- </a-col> -->
- <a-col :md="6" :sm="8">
- <a-form-item label="成衣工厂">
- <!-- <a-input placeholder="请输入成衣工厂" v-model="queryParam.garmentFactory"></a-input> -->
- <j-search-select-tag
- placeholder="请选择成衣广场"
- v-model="queryParam.garmentFactory"
- dict="view_garmentfactory,garmentfactory,garmentfactory">
- </j-search-select-tag>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-item label="预发货日期">
- <a-range-picker
- style="width: 100%"
- :mode="rangeMode"
- :placeholder="['开始日期', '结束日期']"
- :value="range"
- format = "YYYY-MM-DD"
- @change="rangeSelectChange"
- />
- </a-form-item>
- </a-col>
- </template>
- <a-col :md="6" :sm="8">
- <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
- <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
- <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
- <a @click="handleToggleSearch" style="margin-left: 8px">
- {{ toggleSearchStatus ? '收起' : '展开' }}
- <a-icon :type="toggleSearchStatus ? 'up' : 'down'" />
- </a>
- </span>
- </a-col>
- </a-row>
- </a-form>
- </div>
- </a-card>
- <!-- 操作按钮区域 导出 导入 新增-->
- <a-card :bordered="false" style="margin:10px 0">
- <div class="table-operator">
- <a-button type="primary" @click="addAdpacking" icon="plus">新增</a-button>
- <a-button type="primary" icon="download" @click="handleExportXls('预装箱单-成衣','0')">预装箱单成衣导出</a-button>
- <a-button type="primary" icon="download" @click="handleExportXls('预装箱单-成衣','1')">预装箱单成衣导出-装箱单</a-button>
- <a-upload productName="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel" :customRequest="uploadFlie">
- <a-button type="primary" icon="import">导入-来源出运明细</a-button>
- </a-upload>
- <a-button type="primary" @click="batchSubmit" icon="check">批量提交</a-button>
- <a-button type="primary" @click="batchCanelSubmit" icon="close">批量取消提交</a-button>
- <a-button type="primary" @click="batchPush" icon="export">批量推送</a-button>
- </div>
- <!-- table rowKey="id" -->
- <a-table
- bordered
- :columns="adPaListClothesColumns"
- :data-source="adPaListClothesData"
- :loading="loading"
- :pagination="pagination"
- :row-key="record => record.id"
- :rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
- @change="handleTableChange"
- :scroll="{ x: 1500 , y: 500}"
- >
- <!-- 推送状态 -->
- <span slot="pushStatesSlot" slot-scope="text, record" :title="record.memo">
- <a-tag color="#2db7f5" v-if="record.pushStatus == '0' || record.pushStatus == null ">未推送</a-tag>
- <a-tag color="#87d068" v-if="record.pushStatus == '1'">推送成功</a-tag>
- <a-tag color="#f50" v-if="record.pushStatus == '2'">推送失败</a-tag>
- </span>
- <!-- 单据状态 -->
- <span slot="statusSlot" slot-scope="text, record">
- <a-tag color="orange" v-if="record.status == 0 || record.status == null">未提交</a-tag>
- <a-tag color="green" v-if="record.status == 1">已提交</a-tag>
- </span>
- <!-- 操作 默认按钮 未提交未推送-->
- <span slot="operationSlot" slot-scope="text, record">
- <a href="javascript:void(0);" @click="itemXls(record,'0')" style="color:green">报表模版导出</a>
- <a-divider type="vertical" />
- <a-dropdown>
- <a class="ant-dropdown-link">更多<a-icon type="down"/></a>
- <!-- 已保存 -->
- <a-menu slot="overlay" v-if="record.status == '0' || record.status == null">
- <a-menu-item>
- <a @click="details(record)">详情</a>
- </a-menu-item>
- <a-menu-item>
- <a @click="edit(record)">编辑</a>
-
- </a-menu-item>
- <!-- <a-menu-item>
- <a href="javascript:void(0);" @click="itemXls(record,'1')" >成衣模版导出</a>
- </a-menu-item> -->
-
- <!-- <a-menu-item>
- <a-popconfirm title="确定提交吗?" ok-text="是" cancel-text="否" @confirm="submit(record)">
- <a href="javascript:void(0);" style="color:green;">提交</a>
- </a-popconfirm>
- </a-menu-item> -->
- <a-menu-item>
- <a-popconfirm title="确定删除吗?" ok-text="是" cancel-text="否" @confirm="handleDelete(record)">
- <a href="javascript:void(0);" style="color:red;">删除</a>
- </a-popconfirm>
- </a-menu-item>
- </a-menu>
- <!-- 已提交 且 推送成功 -->
- <a-menu slot="overlay" v-if="record.pushStatus == '1' && record.status == '1'">
- <a-menu-item>
- <a @click="details(record)">详情</a>
- </a-menu-item>
- <!-- <a-menu-item>
- <a href="javascript:void(0);" @click="itemXls(record,'1')" >成衣模版导出</a>
- </a-menu-item> -->
- </a-menu>
- <!-- 已提交 且 推送失败 -->
- <a-menu slot="overlay" v-if="record.pushStatus == '2' && record.status == '1'">
- <a-menu-item>
- <a @click="details(record)">详情</a>
- </a-menu-item>
- <a-menu-item>
- <a-popconfirm title="确定重新推送吗?" ok-text="是" cancel-text="否" @confirm="push(record)">
- <a href="javascript:void(0);" style="color:green;">重新推送</a>
- </a-popconfirm>
- </a-menu-item>
- <!-- <a-menu-item>
- <a href="javascript:void(0);" @click="itemXls(record,'1')" >成衣模版导出</a>
- </a-menu-item> -->
- </a-menu>
- <!-- 已提交 -->
- <a-menu slot="overlay" v-if="record.status == '1'">
- <a-menu-item>
- <a @click="details(record)">详情</a>
- </a-menu-item>
- <!-- <a-menu-item>
- <a-popconfirm title="确定取消提交吗?" ok-text="是" cancel-text="否" @confirm="cancelSubmit(record)">
- <a href="javascript:void(0);" style="color:red;">取消提交</a>
- </a-popconfirm>
- </a-menu-item> -->
- <!-- <a-menu-item>
- <a href="javascript:void(0);" @click="itemXls(record,'1')" >成衣模版导出</a>
- </a-menu-item> -->
- <a-menu-item>
- <a-popconfirm title="确定推送吗?" ok-text="是" cancel-text="否" @confirm="push(record)">
- <a href="javascript:void(0);" style="color:green;">推送</a>
- </a-popconfirm>
- </a-menu-item>
- </a-menu>
- <!-- 未推送 -->
- <a-menu slot="overlay" v-if="record.pushStatus == '0'">
- <a-menu-item>
- <a @click="details(record)">详情</a>
- </a-menu-item>
- <a-menu-item>
- <a-popconfirm title="确定推送吗?" ok-text="是" cancel-text="否" @confirm="push(record)">
- <a href="javascript:void(0);" style="color:green;">推送</a>
- </a-popconfirm>
- </a-menu-item>
- <!-- <a-menu-item>
- <a href="javascript:void(0);" @click="itemXls(record,'1')">成衣模版导出</a>
- </a-menu-item> -->
- </a-menu>
- </a-dropdown>
- </span>
- </a-table>
- </a-card>
- <!-- 抽屉 -->
- <div>
- <addAdpacking-drawer
- ref="addAdpackingDrawer"
- :fatherList="getadPaListClothes"
- @ok="modalFormOk"
- @hand-submit="submit"
- ></addAdpacking-drawer>
- <detailsAdpacking-drawer ref="detailsAdpackingDrawer" @ok="modalFormOk"></detailsAdpacking-drawer>
- </div>
- <!-- 导入确认框 -->
- <div>
- <a-modal :visible="visible" title="是否继续导入" @ok="handleOk" @cancel="handleCancel">
- <ul>
- <li v-for="(item,index) in message" :key="index">{{item}}</li>
- </ul>
- </a-modal>
- </div>
- </div>
- </template>
- <script>
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- import JEllipsis from '@/components/jeecg/JEllipsis'
- import moment from 'moment'
- import { downFile } from '@/api/manage'
- import addAdpackingDrawer from '@views/advance-packingList/addAdpackingDrawer.vue'
- import detailsAdpackingDrawer from '@views/advance-packingList/detailsAdpackingDrawer.vue'
- import { getadPaList, itemByMainId, submit, cancelSubmit, deleteAdPaList,batchSubmit,batchPush,push,batchCanelSubmit,exportList,fileDetail,upload} from '@api/document/advance-packingList.js'
- export default {
- productName: 'AdPaListClothes', // 预装箱单-成衣
- mixins: [JeecgListMixin],
- components: { JEllipsis, moment, addAdpackingDrawer, detailsAdpackingDrawer },
- data() {
- let ellipsis = (v, l = 20) => <j-ellipsis value={v} length={l} />
- return {
- loading: false, // 表格加载
- id: '',
- range:[],//预发货日期数组
- rangeMode:['date','date'],
- timeRange:'',
- // 表头
- adPaListClothesColumns: [
- {
- title: '单据号',
- dataIndex: 'documentNo',
- ellipsis: true,
- width: 120,
- // fixed: 'left',
- className: 'replacecolor'
- },
- {
- title: '订单号',
- dataIndex: 'orderNumber',
- width: 120,
- ellipsis: true,
- // fixed: 'left',
- className: 'replacecolor'
- },
- {
- title: '款号',
- dataIndex: 'itemNumber',
- width: 120,
- ellipsis: true,
- // fixed: 'left',
- className: 'replacecolor'
- },
- {
- title: '客户(简称)',
- dataIndex: 'customerAbbreviation',
- width: 100,
- ellipsis: true,
- // fixed: 'left',
- className: 'replacecolor'
- },
- {
- title: '预发货日期',
- dataIndex: 'preDeliveryDate',
- width: 120,
- ellipsis: true,
- customRender: text => {
- return moment(text).format('YYYY-MM-DD')
- },
- className: 'replacecolor'
- },
- {
- title: '小po',
- dataIndex: 'smallPo',
- width: 100,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '分销点',
- dataIndex: 'distributionPoint',
- width: 120,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '存货名称',
- dataIndex: 'inventoryName',
- width: 120,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '颜色',
- dataIndex: 'colour',
- width: 180,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '采购/委外订单号',
- dataIndex: 'spurOrSubOrder',
- width: 220,
- ellipsis: true,
- className: 'replacecolor'
- },
- // {
- // title: '订单类型',
- // dataIndex: 'orderType',
- // width: 100,
- // ellipsis: true,
- // className: 'replacecolor'
- // },
- // {
- // title: '工厂单价',
- // dataIndex: 'factoryUnitPrice',
- // width: 100,
- // ellipsis: true,
- // className: 'replacecolor'
- // },
- {
- title: '数量(按合并规则累计)',
- dataIndex: 'total',
- width: 200,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '箱数',
- dataIndex: 'totalBoxes',
- width: 100,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '总净重',
- dataIndex: 'totalNetWeight',
- width: 100,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '总毛重',
- dataIndex: 'totalGrossWeight',
- width: 100,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '总体积',
- dataIndex: 'totalVolume',
- ellipsis: true,
- width: 100,
- className: 'replacecolor'
- },
- // {
- // title: '总价',
- // dataIndex: 'totalPrice',
- // width: 100,
- // className: 'replacecolor'
- // },
- {
- title: '集装箱代号',
- dataIndex: 'containerCode',
- width: 120,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '集装箱号',
- dataIndex: 'containerNumber',
- width: 120,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '预托书号',
- dataIndex: 'depositaryReceiptNo',
- width: 100,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '成衣工厂',
- dataIndex: 'garmentFactory',
- width: 160,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '推送状态',
- dataIndex: 'pushStatus',
- width: 80,
- scopedSlots: { customRender: 'pushStatesSlot' },
- fixed: 'right',
- className: 'replacecolor'
- },
- {
- title: '单据状态',
- dataIndex: 'status',
- width: 80,
- scopedSlots: { customRender: 'statusSlot' },
- fixed: 'right',
- className: 'replacecolor'
- },
- // {
- // title: '原因',
- // dataIndex: 'memo',
- // width: 220,
- // fixed: 'right',
- // customRender: t => ellipsis(t),
- // className: 'replacecolor'
- // },
- {
- title: '操作',
- dataIndex: 'operation',
- scopedSlots: { customRender: 'operationSlot' },
- width: 180,
- fixed: 'right',
- className: 'replacecolor'
- }
- ],
- adPaListClothesData: [],
- visible:false,
- message:[],//导入文件信息
- file:{},//导入文件
- queryParam: {
- pageSize:20
- // pageNo: '',
- // orderNumber: '',
- // itemNumber: '',
- // productName: '' // 品名
- },
- pagination: {
- // total: '',
- // current: 0,
- // pageSize: 0
- },
- selectedRowKeys: [], // 勾选航
- dateFormat: 'YYYY-MM-DD',
- url: {
- list: '/sys/user/list',
- importExcelUrl: '/spapl/syPreAssembledPackingList/importExcel3' // 导入
- },
- }
- },
- created() {
- this.getadPaListClothes()
- },
- methods: {
- // 分页查询 预装箱单-成衣
- getadPaListClothes() {
- console.log(this.queryParam)
- this.$nextTick(() => {
- getadPaList(this.queryParam).then(res => {
- this.loading = false
- if (res.success) {
- this.adPaListClothesData = [];
- if (res.result.records != null){
- this.adPaListClothesData = res.result.records;
- }
- this.pagination = {
- total: res.result.total,
- current: res.result.current,
- pageSize: res.result.size
- }
- }else{
- this.$message.error(res.message);
- }
- })
- })
- },
- // 编辑
- edit(record) {
- itemByMainId({id:record.id}).then(res => {
- if (res.success) {
- this.$refs.addAdpackingDrawer.visible = true;
- this.$refs.addAdpackingDrawer.editDecide = 'edit';
- this.$refs.addAdpackingDrawer.addAdpacking = res.result; //接口参数
- this.$refs.addAdpackingDrawer.addState = '0';
- this.$refs.addAdpackingDrawer.loadSizeTables(res.result.syPreAssembledPackingListItemList[0].sizeTables);
- // var totalNetWeight = 0;
- // var totalGrossWeight = 0;
- // var totalVolume = 0;
- // var totalPrice = 0;
- // var total = 0;
- for (var i=0; i<res.result.syPreAssembledPackingListItemList.length;i++){
- var row = res.result.syPreAssembledPackingListItemList[i];
- var sizeTables = row.sizeTables;
- for (var j=0; j<sizeTables.length;j++){
- row['size-'+sizeTables[j].size] = sizeTables[j].proportion;
- }
- // totalNetWeight += row.totalNetWeight*1;
- // totalGrossWeight += row.totalGrossWeight*1;
- // totalVolume += row.totalVolume*1;
- // totalPrice += row.totalPrice*1;
- // total += row.total*1
- }
- // res.result.totalNetWeight = totalNetWeight;
- // res.result.totalGrossWeight = totalGrossWeight;
- // res.result.totalVolume = totalVolume;
- // res.result.totalPrice = totalPrice;
- // res.result.total = total;
- }else{
- this.$message.error(res.message);
- }
- });
-
- },
- // 详情
- details(record) {
- itemByMainId({id:record.id}).then(res => {
- if (res.success) {
-
- this.$refs.detailsAdpackingDrawer.visible = true;
- res.result.syPreAssembledPackingListItemList.map(item=>item.hod = moment(item.hod).format('YYYY-MM-DD'))
- this.$refs.detailsAdpackingDrawer.addAdpacking = res.result; //接口参数
- this.$refs.detailsAdpackingDrawer.loadSizeTables(res.result.syPreAssembledPackingListItemList[0].sizeTables);
- var totalNetWeight = 0;
- var totalGrossWeight = 0;
- var totalVolume = 0;
- var totalPrice = 0;
- for (var i=0; i<res.result.syPreAssembledPackingListItemList.length;i++){
- var row = res.result.syPreAssembledPackingListItemList[i];
- var sizeTables = row.sizeTables;
- for (var j=0; j<sizeTables.length;j++){
- row['size-'+sizeTables[j].size] = sizeTables[j].proportion;
- }
- totalNetWeight += row.totalNetWeight*1;
- totalGrossWeight += row.totalGrossWeight*1;
- totalVolume += row.totalVolume*1;
- totalPrice += row.totalPrice*1;
- }
- res.result.totalNetWeight = totalNetWeight;
- res.result.totalGrossWeight = totalGrossWeight;
- res.result.totalVolume = totalVolume;
- res.result.totalPrice = totalPrice;
-
- }else{
- this.$message.error(res.message);
- }
- });
- },
- // 新增
- addAdpacking() {
- this.$refs.addAdpackingDrawer.visible = true;
- this.$refs.addAdpackingDrawer.addState = '0';
- },
- // 列表导出
- handleExportXls(fileName,sta) {
- const data = this.queryParam
- data['status'] = sta
- downFile('/spapl/syPreAssembledPackingList/exportXls',data).then(data => {
- if (!data) {
- this.$message.warning('文件下载失败')
- return
- }
- if (typeof window.navigator.msSaveBlob !== 'undefined') {
- window.navigator.msSaveBlob(new Blob([data], { type: 'application/vnd.ms-excel' }), fileName + '.xls')
- } else {
- let url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
- let link = document.createElement('a')
- link.style.display = 'none'
- link.href = url
- link.setAttribute('download', fileName + '.xls')
- document.body.appendChild(link)
- link.click()
- document.body.removeChild(link) // 下载完成移除元素
- window.URL.revokeObjectURL(url) // 释放掉blob对象
- }
- })
- },
- // 导入信息
- uploadFlie(file) {
- const formData = new FormData()
- formData.append('file',file.file)
- fileDetail(formData).then(res => {
- if (res.success) {
- this.visible = true
- this.message = res.message.split(';').filter((element) => {
- return element !== "";
- });
- this.file = file
- }else{
- this.$message.error(res.message);
- }
- })},
- //继续导入
- handleOk(){
- const formData = new FormData()
- formData.append('file', this.file.file)
- upload(formData).then(res => {
- this.visible = false
- if (res.success) {
- this.getadPaListClothes()
- this.$message.success('导入成功')
- }else{
- this.$message.error(res.message);
- }
- })
- },
- //取消导入
- handleCancel(){
- this.visible = false
- this.loading = false
- },
- // 删除
- handleDelete(record) {
- console.log('点击删除项id:', record.id)
- this.$nextTick(() => {
- if(this.queryParam.pageNo > 1 && this.adPaListClothesData.length === 1){
- this.queryParam.pageNo = this.queryParam.pageNo -1
- }
- deleteAdPaList({ id: record.id }).then(res => {
- if (res.success) {
- console.log('res:', res)
- this.getadPaListClothes()
- this.$message.success('删除成功')
- } else {
- this.$message.error('删除成功')
- }
-
- })
- })
- },
- searchQuery() {
- this.toggleSearchStatus = false
- this.queryParam.pageNo = ''
- this.queryParam.pageSize = 20
- this.getadPaListClothes()
- },
- searchReset() {
- this.range = []
- this.queryParam = {
- pageSize:20
- }
- this.getadPaListClothes()
- },
- // 操作 单条数据导出
- itemXls(record,sta) {
- var data = sta
- downFile('/spapl/syPreAssembledPackingList/exportXls',{id:record.id,status:data}).then(data => {
- if (!data) {
- this.$message.warning('文件下载失败')
- return
- }
- if (typeof window.navigator.msSaveBlob !== 'undefined') {
- window.navigator.msSaveBlob(new Blob([data], { type: 'application/vnd.ms-excel' }), item + '.xlsx')
- }else {
- let url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
- let link = document.createElement('a')
- link.style.display = 'none'
- link.href = url
- link.setAttribute('download', '预装箱单' + '.xlsx')
- document.body.appendChild(link)
- link.click()
- document.body.removeChild(link) // 下载完成移除元素
- window.URL.revokeObjectURL(url) // 释放掉blob对象
- }
- })
- },
- // 提交
- submit(record) {
- var that = this;
- this.$nextTick(() => {
- submit({ id: record.id }).then(res => {
- if (res.success) {
- this.adPaListClothesData.map(item =>{
- if(item.id == record.id){
- item.status = 1
- }
- })
- this.$forceUpdate()
- that.$message.success('提交成功');
- }else{
- that.$message.error(res.message);
- }
- })
- })
- },
- // // 取消提交
- // cancelSubmit(record){
- // var that = this;
- // this.$nextTick(() => {
- // if(record.isReference == 2){
- // that.$message.error('不可取消提交!');
- // }else {
- // cancelSubmit({ id: record.id }).then(res => {
- // if (res.success) {
- // record.status=0;
- // that.$message.success('取消提交成功');
- // }else{
- // that.$message.error(res.message);
- // }
- // })
- // }
-
- // })
- // },
- //批量提交
- batchSubmit(){
- this.$nextTick(() => {
- for(var i =0;i<this.selectedRows.length;i++){
- var tickRow = this.selectedRows[i]
- if(tickRow.status === '1'){
- var clo = i+1
- this.$message.error("部分数据是已提交,请勿重复提交!");
- return
- }
- }
- var ids = this.selectedRowKeys.toString()
- batchSubmit({ id: ids }).then(res => {
- if (res.success) {
- this.getadPaListClothes()
- this.$message.success('批量提交成功');
- this.selectedRowKeys = []
- }else {
- this.$message.error(res.message);
- }
- })
- })
- },
- //批量取消提交
- batchCanelSubmit(){
- this.$nextTick(() => {
- for(var i =0;i<this.selectedRows.length;i++){
- var tickRow = this.selectedRows[i]
- if(tickRow.status === '0'){
- this.$message.error("含有未提交数据,请重新选择!");
- return
- }
- }
- var ids = this.selectedRowKeys.toString()
- batchCanelSubmit({ ids:ids }).then(res => {
- if (res.success) {
- this.getadPaListClothes()
- this.selectedRowKeys = []
- this.$message.success('批量取消提交成功');
- }else if(res.code == 111){
- for(var i=0;i<this.selectedRows.length;i++){
- if(res.result.indexOf(this.selectedRows[i].id) !== -1){
- this.$message.error(res.message+'(所选第'+(i+1) +'行数据)');
- return
- }
- }
- }else {
- this.$message.error(res.message);
- }
- })
- })
- },
- //批量推送
- batchPush(){
- this.$nextTick(() => {
- for(var i =0;i<this.selectedRows.length;i++){
- var tickRow = this.selectedRows[i]
- var clo = i+1
- if(tickRow.status == '0'){
- this.$message.error("勾选的第"+clo+"行数据未提交,不能推送!");
- return
- }
- if(tickRow.status === '1' && tickRow.pushStatus === '1'){
- this.$message.error("勾选的第"+clo+"行数据是已推送!");
- return
- }
- }
- var ids = this.selectedRowKeys.toString()
- batchPush({ id: ids }).then(res => {
- if (res.success) {
- this.selectedRows.map(item=>{
- item.pushStatus = 1
- })
- this.$message.success('批量推送成功');
- }else {
- this.$message.error(res.message);
- this.selectedRows.map(item=>{
- item.pushStatus = 2
- })
- this.$message.error(res.message);
- }
- })
- this.selectedRowKeys = []
- })
- },
- //推送
- push(record){
- this.$nextTick(() => {
- push({ id: record.id }).then(res => {
- if (res.success) {
- record.pushStatus=1;
- this.$message.success('推送成功');
- }else{
- record.pushStatus = 2
- this.$message.error(res.message);
- }
- })
- })
- },
- // 选中行
- onSelectChange(keys, rows) {
- this.selectedRowKeys = keys
- this.selectedRows = rows
- },
- handleTableChange(pagination, filters, sorter) {
- // console.log('当前页信息>>>>',pagination)
- this.queryParam.pageNo = pagination.current
- this.getadPaListClothes()
- },
- aa() {},
- onDateChange(value, dateString) {
- this.queryParam.startTime = dateString[0]
- this.queryParam.endTime = dateString[1]
- },
-
- rangeSelectChange(value) {
- this.range = value
- if (value.length == 0){
- this.queryParam.stratDate = "";
- this.queryParam.endDate = "";
- }else{
- this.queryParam.stratDate = value[0].format('YYYY-MM-DD');
- this.queryParam.endDate = value[1].format('YYYY-MM-DD');
- }
- }
- },
- computed: {
- // 导入
- importExcelUrl() {
- return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
- // this.
- },
- // 选中项
- rowSelection() {
- return {
- onChange: (selectedRowKeys, selectedRows) => {
- console.log(`selectedRowKeys: ${selectedRowKeys}`, 'selectedRows: ', selectedRows)
- },
- getCheckboxProps: record => ({
- props: {
- disabled: record.title === 'Disabled User',
- // Column configuration not to be checked
- title: record.title
- }
- })
- }
- }
- }
- }
- </script>
- <style lang="less" scoped>
- @import '~@assets/less/common.less';
- @import '~@assets/less/overwriter.less';
- /deep/ .ant-table-thead > tr > th {
- text-align: center;
- // font-weight: 700;
- }
- /deep/ .ant-table-tbody {
- text-align: center;
- }
- // /deep/ th.replacecolor {
- // background-color: #ccc;
- // }
- </style>
|