123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506 |
- <template>
- <a-modal
- title="参照出运明细"
- v-model="referShipDetModVis"
- :confirmLoading="confirmLoading"
- @ok="onSubmit"
- @cancel="handleCancel"
- width="86%"
- style="top:330px;left:100px;"
- >
- <!-- <template slot="footer">
- <a-button @click="handleCancel">关闭</a-button>
- <a-button @click="onSubmit" v-preventReClick="2000" type="primary">确定</a-button>
- </template> -->
- <a-spin :spinning="confirmLoading">
- <!-- 查询 -->
- <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="客户简称">
- <j-search-select-tag
- placeholder="请选择客户简称"
- v-model="queryParam.clientAbbreviation"
- dict="view_customer,customername,customername">
- </j-search-select-tag>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-item label="发货情况">
- <a-select v-model="queryParam.status" style="width: 200px" placeholder="请选择发货情况" >
- <a-select-option value="n">超量发货</a-select-option>
- <a-select-option value="y">正常</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="8">
- <a-form-item label="业务员">
- <!-- <a-input placeholder="请输入业务员" v-model="queryParam.salesman"></a-input> -->
- <j-search-select-tag
- placeholder="请选择业务员"
- v-model="queryParam.salesman"
- dict="view_salesman,salesman,salesman">
- </j-search-select-tag>
- </a-form-item>
- </a-col>
- <template v-if="toggleSearchStatus">
- <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="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>
- <a-col :md="6" :sm="8">
- <a-form-item label="预发货日期">
- <a-range-picker
- :placeholder="['开始时间', '结束时间']"
- format="YYYY-MM-DD"
- style="width: 100%"
- v-model="preDeliveryDate"
- @change="onDateChange"
- />
- </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>
- <!-- table -->
- <a-table
- bordered
- size="small"
- rowKey="groupId"
- v-if="data"
- :columns="columns"
- :data-source="data"
- :loading="loading"
- :pagination="pagination"
- :rowSelection="{ selectedRowKeys: selectedRowKeys, onChange: onSelectChange }"
- @change="handleTableChange"
- :scroll="{ x: 1500 }"
- >
- </a-table>
- <h3>共选择 {{selectedNumber}} 条</h3>
- </a-spin>
- </a-modal>
- </template>
- <script>
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- import JEllipsis from '@/components/jeecg/JEllipsis'
- import moment from 'moment'
- import { shipList } from '@api/document/advance-packingList.js'
- export default {
- name: 'ReferShipmentDetailsModal',
- mixins: [JeecgListMixin],
- components: { JEllipsis, moment },
- data() {
- let ellipsis = (v, l = 20) => <j-ellipsis value={v} length={l} /> // 省略
- return {
- selectedRowKeys: [], // 勾选行
- selectedRows: [], // 勾选项
- selectedNumber:0,//勾选条数
- loading: false, // 表格加载
- preDeliveryDate: [], //预发货日期
- // 表头
- columns: [
- {
- title: '单据号',
- dataIndex: 'documentNo',
- width: 160,
- // fixed: 'left',
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '销售订单号',
- dataIndex: 'orderNumber',
- width: 120,
- // fixed: 'left',
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '客户简称',
- dataIndex: 'customerAbbreviation',
- width: 120,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '部门',
- dataIndex: 'salesDepartment',
- width: 120,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '业务员',
- dataIndex: 'salesman',
- width: 100,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '小po',
- dataIndex: 'smallPo',
- width: 120,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: 'Pack Id',
- dataIndex: 'packId',
- width: 120,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '分销点',
- dataIndex: 'distributionPoint',
- width: 120,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '款号',
- dataIndex: 'itemNumber',
- width: 120,
- ellipsis: true,
- className: 'replacecolor'
- },
- {
- title: '数量(合计)',
- dataIndex: 'shipmentQuantity',
- width: 100,
- ellipsis: true,
- className: 'replacecolor'
- },
- // {
- // title: '创建时间',
- // dataIndex: 'createTime',
- // align: 'center',
- // sorter: true,
- // customRender: text => {
- // return moment(text).format('YYYY-MM-DD')
- // }
- // },
- {
- title: '预发货日期',
- dataIndex: 'preDeliveryDate',
- width: 120,
- ellipsis: true,
- className: 'replacecolor',
- customRender: text => {
- return moment(text).format('YYYY-MM-DD')
- }
- },
- // {
- // title: '预完工日期',
- // dataIndex: 'preCompletionDate',
- // width: 120,
- // className: 'replacecolor'
- // },
- {
- title: '存货名称',
- dataIndex: 'inventoryName',
- width: 220,
- ellipsis: true,
- className: 'replacecolor'
- },
- // {
- // title: '单价(销售)',
- // dataIndex: 'salesUnitPrice',
- // width: 120,
- // className: 'replacecolor'
- // },
- // {
- // title: '采购/委外订单号',
- // dataIndex: 'purOrSubOrder',
- // width: 140,
- // className: 'replacecolor'
- // },
- // {
- // title: '订单类型',
- // dataIndex: 'orderType',
- // width: 120,
- // className: 'replacecolor'
- // },
- // {
- // // (采购/委外单价)
- // title: '工厂单价',
- // dataIndex: 'factoryUnitPrice',
- // width: 100,
- // className: 'replacecolor'
- // },
- // {
- // // (单证维护)
- // title: '申报要素',
- // dataIndex: 'declarationElements',
- // width: 120,
- // customRender: t => ellipsis(t),
- // className: 'replacecolor'
- // },
- // {
- // // (存货自定义项)
- // title: '套装件数',
- // dataIndex: 'numberOfSets',
- // width: 100,
- // className: 'replacecolor'
- // },
- // {
- // title: '是否TC功能',
- // dataIndex: 'isTc',
- // // 0 否 、 1 是
- // width: 90,
- // className: 'replacecolor'
- // },
- // {
- // title: 'HScode',
- // dataIndex: 'hsCode',
- // width: 120,
- // className: 'replacecolor'
- // },
- // {
- // title: '中文品名',
- // dataIndex: 'chineseName',
- // width: 120,
- // className: 'replacecolor'
- // },
- // {
- // title: '英文品名',
- // dataIndex: 'englishProductName',
- // width: 120,
- // className: 'replacecolor'
- // },
- {
- title: '成衣工厂',
- dataIndex: 'garmentFactory',
- width: 120,
- ellipsis: true,
- className: 'replacecolor'
- },
- // {
- // title: '报关单价',
- // dataIndex: 'customsDeclarationUnitPrice',
- // width: 120,
- // className: 'replacecolor'
- // }
- ],
- data: [],
- confirmLoading: false,
- referShipDetModVis: false,
- // 查询条件
- queryParam: {
- status:'y',
- },
- // 分页
- pagination: {
- // total: 0,
- // current: 0,
- // pageSize: 0
- }
- }
- },
- // 接收父组件 方法
- // props: {
- // father: {
- // type: Function,
- // default: null
- // }
- // },
- created() {
- // this.getShipData()
- },
- methods: {
- //参照发运明细数据
- getShipData() {
- this.$nextTick(() => {
- shipList(this.queryParam).then(res => {
- // console.log('参照订单数据res', res)
- if (res.success) {
- this.data = [];
- if (res.result.records != null){
- this.data = res.result.records;
- this.data.map(item=>{
- if(item.isTc === "1"){
- item.isTc = '是'
- }else if(item.isTc === "0"){
- item.isTc = '否'
- }
- })
- }
- this.pagination = {
- total: res.result.total,
- current: res.result.current,
- pageSize: res.result.size
- }
- }
- })
- })
- },
- // 弹框确定
- onSubmit() {
- if (this.selectedRowKeys.length == 0) {
- this.$message.error('请勾选发运明细')
- } else {
- // console.log('需要传给父组件的数据', this.selectedRows)
- // bao父组件指定的传数据绑定的函数 || this.selectedRows子组件给父组件传递的数据
- var msg = "选中记录后,会清除编辑的内容。";
- this.$message.info(msg);
- this.$emit('bao', this.selectedRows)
- // this.referShipDetModVis = false
- // this.selectedRowKeys = []
- // this.selectedRows = []
- this.close()
- }
- },
- // 弹框查询按钮
- searchQuery() {
- this.toggleSearchStatus = false
- this.queryParam.pageNo = ''
- this.getShipData()
- this.defulatSelect()
- },
- // 重置
- searchReset() {
- this.queryParam = {
- status:'y'
- }
- this.preDeliveryDate = []
- this.getShipData()
- this.defulatSelect()
- },
- close() {
- this.$emit('close')
- this.referShipDetModVis = false
- this.data = []
- this.defulatSelect()
- this.queryParam = {
- status:'y'
- }
- this.preDeliveryDate = []
- // this.getShipData()
- },
- handleCancel() {
- this.close()
- },
- // 选中行
- onSelectChange(keys, rows) {
- this.selectedRowKeys = keys
- this.selectedRows = rows
- if (this.selectedRows.length > 1) {
- this.$message.error("只能勾选一条参照数据!")
- this.selectedRowKeys.pop()
- this.selectedRow.pop()
- }
- this.selectedNumber = rows.length
- },
- //选中行恢复默认
- defulatSelect(){
- this.selectedRowKeys = [];
- this.selectedRows = [];
- this.selectedNumber = 0
- },
-
- handleTableChange(pagination, filters, sorter) {
- this.queryParam.pageNo = pagination.current
- this.getShipData()
- },
- onDateChange(value, dateString) {
- this.queryParam.startDate = dateString[0]
- this.queryParam.endDate = dateString[1]
- },
- },
- computed: {
- // 选中项
- 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 !important;
- }
- /deep/ .ant-table-fixed-left table, .ant-table-fixed-right table{
- width: min-content;
- }
- </style>
|