|
@@ -0,0 +1,380 @@
|
|
|
|
+<template>
|
|
|
|
+ <div class="warehouseAllocationEdit-wrap">
|
|
|
|
+ <a-page-header :ghost="false" @back="handleBack" class="warehouseAllocationEdit-back">
|
|
|
|
+ <!-- 自定义的二级文字标题 -->
|
|
|
|
+ <template slot="subTitle">
|
|
|
|
+ <a id="warehouseAllocationEdit-back-btn" href="javascript:;" @click="handleBack">返回列表</a>
|
|
|
|
+ </template>
|
|
|
|
+ <!-- 操作区,位于 title 行的行尾 -->
|
|
|
|
+ <template slot="extra">
|
|
|
|
+ <a-button key="2" id="warehouseAllocationEdit-preview-btn">打印预览</a-button>
|
|
|
|
+ <a-button key="1" type="primary" id="warehouseAllocationEdit-print-btn">快速打印</a-button>
|
|
|
|
+ </template>
|
|
|
|
+ </a-page-header>
|
|
|
|
+ <!-- 基础信息 -->
|
|
|
|
+ <a-card :bordered="false" class="warehouseAllocationEdit-cont">
|
|
|
|
+ <a-collapse :activeKey="['1']">
|
|
|
|
+ <a-collapse-panel key="1">
|
|
|
|
+ <template slot="header">
|
|
|
|
+ 基础信息
|
|
|
|
+ <a-button type="primary" shape="circle" size="small" icon="edit" class="edit-circle-btn" id="warehouseAllocationEdit-circle-btn" @click.stop="handleEditInfo" />
|
|
|
|
+ </template>
|
|
|
|
+ <a-descriptions :column="3">
|
|
|
|
+ <a-descriptions-item label="调出仓库">箭冠营销中心</a-descriptions-item>
|
|
|
|
+ <a-descriptions-item label="调入仓库">箭冠营销中心</a-descriptions-item>
|
|
|
|
+ </a-descriptions>
|
|
|
|
+ </a-collapse-panel>
|
|
|
|
+ </a-collapse>
|
|
|
|
+ </a-card>
|
|
|
|
+ <!-- 选择产品 -->
|
|
|
|
+ <a-card :bordered="false" class="warehouseAllocationEdit-cont">
|
|
|
|
+ <a-collapse :activeKey="['1']">
|
|
|
|
+ <a-collapse-panel key="1" header="选择产品">
|
|
|
|
+ <!-- 筛选条件 -->
|
|
|
|
+ <div class="table-page-search-wrapper">
|
|
|
|
+ <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
|
|
|
|
+ <a-row :gutter="15">
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="产品编码" prop="name">
|
|
|
|
+ <a-input id="warehouseAllocationEdit-name" v-model="queryParam.name" placeholder="请输入产品编码" allowClear />
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="产品名称" prop="name">
|
|
|
|
+ <a-input id="warehouseAllocationEdit-name" v-model="queryParam.name" placeholder="请输入产品名称" allowClear />
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="原厂编码" prop="name">
|
|
|
|
+ <a-input id="warehouseAllocationEdit-name" v-model="queryParam.name" placeholder="请输入原厂编码" allowClear />
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <template v-if="advanced">
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="产品品牌">
|
|
|
|
+ <a-select placeholder="请选择" id="warehouseAllocationEdit-state" allowClear v-model="queryParam.dataSourceNo" :showSearch="true" option-filter-prop="children" :filter-option="filterOption">
|
|
|
|
+ <a-select-option v-for="item in brandData" :key="item.salesChannelNo" :value="item.salesChannelNo">{{ item.salesChannelName }}</a-select-option>
|
|
|
|
+ </a-select>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="产品类别">
|
|
|
|
+ <a-cascader :options="typeData" id="warehouseAllocationEdit-state" placeholder="请选择产品类别" allowClear v-model="queryParam.brand" />
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="调出仓位">
|
|
|
|
+ <v-select
|
|
|
|
+ v-model="queryParam.billStatus"
|
|
|
|
+ ref="billStatus"
|
|
|
|
+ id="warehouseAllocationEdit-billStatus"
|
|
|
|
+ code="PAYMENT_TYPE"
|
|
|
|
+ placeholder="请选择调出仓位"
|
|
|
|
+ allowClear></v-select>
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ </template>
|
|
|
|
+ <a-col :md="6" :sm="24" style="margin-bottom: 24px;">
|
|
|
|
+ <a-button type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="warehouseAllocationList-refresh">查询</a-button>
|
|
|
|
+ <a-button style="margin-left: 8px" @click="resetSearchForm" :disabled="disabled" id="warehouseAllocationList-reset">重置</a-button>
|
|
|
|
+ <a @click="advanced=!advanced" style="margin-left: 8px">
|
|
|
|
+ {{ advanced ? '收起' : '展开' }}
|
|
|
|
+ <a-icon :type="advanced ? 'up' : 'down'"/>
|
|
|
|
+ </a>
|
|
|
|
+ </a-col>
|
|
|
|
+ </a-row>
|
|
|
|
+ </a-form>
|
|
|
|
+ </div>
|
|
|
|
+ <!-- 列表 -->
|
|
|
|
+ <s-table
|
|
|
|
+ class="sTable"
|
|
|
|
+ ref="table"
|
|
|
|
+ size="default"
|
|
|
|
+ :rowKey="(record) => record.id"
|
|
|
|
+ :columns="columns"
|
|
|
|
+ :data="loadData"
|
|
|
|
+ bordered>
|
|
|
|
+ <!-- 调入仓位 -->
|
|
|
|
+ <template slot="storageQuantity" slot-scope="text, record">
|
|
|
|
+ <a-select id="warehouseAllocationEdit-warehouse" placeholder="请选择" allowClear v-model="record.warehouse">
|
|
|
|
+ <a-select-option v-for="item in typeData" :key="item.salesChannelNo" :value="item.salesChannelNo">{{ item.salesChannelName }}</a-select-option>
|
|
|
|
+ </a-select>
|
|
|
|
+ </template>
|
|
|
|
+ <!-- 调出数量 -->
|
|
|
|
+ <template slot="transferOutQuantity" slot-scope="text, record">
|
|
|
|
+ <a-input-number
|
|
|
|
+ id="warehouseAllocationEdit-storageQuantity"
|
|
|
|
+ :value="record.storageQuantity"
|
|
|
|
+ :precision="0"
|
|
|
|
+ :min="0"
|
|
|
|
+ :max="999999"
|
|
|
|
+ placeholder="请输入" />
|
|
|
|
+ </template>
|
|
|
|
+ <!-- 操作 -->
|
|
|
|
+ <template slot="action" slot-scope="text, record">
|
|
|
|
+ <a-button type="primary" @click="handleAdd(record)" id="warehouseAllocationEdit-add-btn">添加</a-button>
|
|
|
|
+ </template>
|
|
|
|
+ </s-table>
|
|
|
|
+ </a-collapse-panel>
|
|
|
|
+ </a-collapse>
|
|
|
|
+ </a-card>
|
|
|
|
+ <!-- 已选产品 -->
|
|
|
|
+ <a-card :bordered="false" class="warehouseAllocationEdit-cont">
|
|
|
|
+ <a-collapse :activeKey="['1']">
|
|
|
|
+ <a-collapse-panel key="1" header="已选产品">
|
|
|
|
+ <!-- 总计 -->
|
|
|
|
+ <a-alert type="info" showIcon style="margin-bottom:15px">
|
|
|
|
+ <div slot="message">总成本:¥<strong>6.33</strong>,总数量: <strong>6</strong> ,总款数: <strong>6</strong> </div>
|
|
|
|
+ </a-alert>
|
|
|
|
+ <!-- 筛选条件 -->
|
|
|
|
+ <a-row :gutter="15" justify="space-between">
|
|
|
|
+ <a-col :span="18">
|
|
|
|
+ <div class="table-page-search-wrapper">
|
|
|
|
+ <a-form layout="inline" @keyup.enter.native="$refs.chooseTable.refresh(true)">
|
|
|
|
+ <a-row :gutter="15">
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="产品编码" prop="name">
|
|
|
|
+ <a-input id="warehouseAllocationEdit-name" v-model="queryParam.name" placeholder="请输入产品编码" allowClear />
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
|
+ <a-form-item label="产品名称" prop="name">
|
|
|
|
+ <a-input id="warehouseAllocationEdit-name" v-model="queryParam.name" placeholder="请输入产品名称" allowClear />
|
|
|
|
+ </a-form-item>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :md="6" :sm="24" style="margin-bottom: 24px;">
|
|
|
|
+ <a-button type="primary" @click="$refs.chooseTable.refresh(true)" :disabled="disabled" id="warehouseAllocationList-refresh">查询</a-button>
|
|
|
|
+ <a-button style="margin-left: 8px" @click="resetSearchForm" :disabled="disabled" id="warehouseAllocationList-reset">重置</a-button>
|
|
|
|
+ </a-col>
|
|
|
|
+ </a-row>
|
|
|
|
+ </a-form>
|
|
|
|
+ </div>
|
|
|
|
+ </a-col>
|
|
|
|
+ <a-col :span="6">
|
|
|
|
+ <a-button type="primary" id="warehouseAllocationEdit-pladd-btn">批量添加</a-button>
|
|
|
|
+ <a-button style="margin-left: 8px" id="warehouseAllocationEdit-import-btn">导入明细</a-button>
|
|
|
|
+ <a-button type="danger" style="margin-left: 8px" id="warehouseAllocationEdit-del-all-btn">整单删除</a-button>
|
|
|
|
+ </a-col>
|
|
|
|
+ </a-row>
|
|
|
|
+ <!-- 列表 -->
|
|
|
|
+ <s-table
|
|
|
|
+ class="sTable"
|
|
|
|
+ ref="chooseTable"
|
|
|
|
+ size="default"
|
|
|
|
+ :rowKey="(record) => record.id"
|
|
|
|
+ :columns="chooseColumns"
|
|
|
|
+ :data="chooseLoadData"
|
|
|
|
+ bordered>
|
|
|
|
+ <!-- 调入仓位 -->
|
|
|
|
+ <template slot="storageQuantity" slot-scope="text, record">
|
|
|
|
+ <a-select id="warehouseAllocationEdit-warehouse" placeholder="请选择" allowClear v-model="record.warehouse">
|
|
|
|
+ <a-select-option v-for="item in typeData" :key="item.salesChannelNo" :value="item.salesChannelNo">{{ item.salesChannelName }}</a-select-option>
|
|
|
|
+ </a-select>
|
|
|
|
+ </template>
|
|
|
|
+ <!-- 调出数量 -->
|
|
|
|
+ <template slot="transferOutQuantity" slot-scope="text, record">
|
|
|
|
+ <a-input-number
|
|
|
|
+ id="warehouseAllocationEdit-storageQuantity"
|
|
|
|
+ :value="record.storageQuantity"
|
|
|
|
+ :precision="0"
|
|
|
|
+ :min="0"
|
|
|
|
+ :max="999999"
|
|
|
|
+ placeholder="请输入" />
|
|
|
|
+ </template>
|
|
|
|
+ <!-- 操作 -->
|
|
|
|
+ <template slot="action" slot-scope="text, record">
|
|
|
|
+ <a-button type="danger" @click="handleDel(record)" id="warehouseAllocationEdit-del-btn">删除</a-button>
|
|
|
|
+ </template>
|
|
|
|
+ </s-table>
|
|
|
|
+ </a-collapse-panel>
|
|
|
|
+ </a-collapse>
|
|
|
|
+ </a-card>
|
|
|
|
+ <a-affix :offset-bottom="0">
|
|
|
|
+ <div style="text-align: center;width: 100%;background-color: #fff;padding: 30px 0;box-shadow: 0 0 20px #dcdee2;">
|
|
|
|
+ <a-button type="primary" size="large" @click="handleSubmit" style="padding: 0 60px;">提交</a-button>
|
|
|
|
+ </div>
|
|
|
|
+ </a-affix>
|
|
|
|
+ <!-- 选择基本信息弹框 -->
|
|
|
|
+ <basic-info-modal :openModal="openModal" @ok="handleOk" @close="openModal=false" />
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+ import { STable, VSelect } from '@/components'
|
|
|
|
+ import basicInfoModal from './basicInfoModal.vue'
|
|
|
|
+ export default{
|
|
|
|
+ components: { STable, VSelect, basicInfoModal },
|
|
|
|
+ data(){
|
|
|
|
+ return{
|
|
|
|
+ queryParam: {
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ brandData: [], // 产品品牌 下拉数据
|
|
|
|
+ typeData: [], // 产品类别 下拉数据
|
|
|
|
+ disabled: false, // 查询、重置按钮是否可操作
|
|
|
|
+ advanced: false, // 高级搜索 展开/关闭
|
|
|
|
+ // 表头
|
|
|
|
+ columns: [
|
|
|
|
+ { title: '产品编码', dataIndex: 'creatDate', align: 'center' },
|
|
|
|
+ { title: '产品名称', dataIndex: 'custNahme', align: 'center', ellipsis: true },
|
|
|
|
+ { title: '原厂编码', dataIndex: 'totalP', align: 'center' },
|
|
|
|
+ { title: '品牌', dataIndex: 'custsNsame', align: 'center' },
|
|
|
|
+ { title: '类别', dataIndex: 'custsNdame', align: 'center' },
|
|
|
|
+ { title: '调出仓位', dataIndex: 'custsNafme', align: 'center' },
|
|
|
|
+ { title: '调入仓位', scopedSlots: { customRender: 'storageQuantity' }, align: 'center' },
|
|
|
|
+ { title: '库存数量', dataIndex: 'custsNagme', align: 'center' },
|
|
|
|
+ { title: '单位', dataIndex: 'custsNsagme', align: 'center' },
|
|
|
|
+ { title: '调出数量', scopedSlots: { customRender: 'transferOutQuantity' }, align: 'center' },
|
|
|
|
+ { title: '操作', scopedSlots: { customRender: 'action' }, width: 150, align: 'center' }
|
|
|
|
+ ],
|
|
|
|
+ // 加载数据方法 必须为 Promise 对象
|
|
|
|
+ loadData: parameter => {
|
|
|
|
+ this.disabled = true
|
|
|
|
+ // return customerBundleDelayList( Object.assign(parameter, this.queryParam) ).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.disabled = false
|
|
|
|
+ // return data
|
|
|
|
+ // })
|
|
|
|
+ const _this = this
|
|
|
|
+ return new Promise(function(resolve, reject){
|
|
|
|
+ const data = {
|
|
|
|
+ pageNo: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ list: [
|
|
|
|
+ { id: '1', purchaseNo: 'jgqp11111111111', creatDate: '产品1', custName: 'jgqp111123545', totalP: '箭冠品牌', totalNums: '产品分类1', totalPrice: '5', payType: '122' }
|
|
|
|
+ ],
|
|
|
|
+ count: 10
|
|
|
|
+ }
|
|
|
|
+ const no = (data.pageNo - 1) * data.pageSize
|
|
|
|
+ for (var i = 0; i < data.list.length; i++) {
|
|
|
|
+ data.list[i].no = no + i + 1
|
|
|
|
+ }
|
|
|
|
+ _this.disabled = false
|
|
|
|
+ resolve(data)
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ // 表头
|
|
|
|
+ chooseColumns: [
|
|
|
|
+ { title: '产品编码', dataIndex: 'creatDaite', align: 'center', sorter: true },
|
|
|
|
+ { title: '产品名称', dataIndex: 'custNayme', align: 'center' },
|
|
|
|
+ { title: '原厂编码', dataIndex: 'custNdayme', align: 'center' },
|
|
|
|
+ { title: '品牌', dataIndex: 'mementPsay', align: 'center' },
|
|
|
|
+ { title: '类别', dataIndex: 'mementPay', align: 'center' },
|
|
|
|
+ { title: '调出仓位', scopedSlots: { customRender: 'storageQuantity' }, align: 'center' },
|
|
|
|
+ { title: '调入仓位', dataIndex: 'custsNakme', align: 'center' },
|
|
|
|
+ { title: '单位', dataIndex: 'custssNakme', align: 'center' },
|
|
|
|
+ { title: '调出数量', scopedSlots: { customRender: 'transferOutQuantity' }, align: 'center' },
|
|
|
|
+ { title: '操作', scopedSlots: { customRender: 'action' }, width: 150, align: 'center' }
|
|
|
|
+ ],
|
|
|
|
+ // 加载数据方法 必须为 Promise 对象
|
|
|
|
+ chooseLoadData: parameter => {
|
|
|
|
+ this.disabled = true
|
|
|
|
+ // return customerBundleDelayList( Object.assign(parameter, this.queryParam) ).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.disabled = false
|
|
|
|
+ // return data
|
|
|
|
+ // })
|
|
|
|
+ const _this = this
|
|
|
|
+ return new Promise(function(resolve, reject){
|
|
|
|
+ const data = {
|
|
|
|
+ pageNo: 1,
|
|
|
|
+ pageSize: 10,
|
|
|
|
+ list: [
|
|
|
|
+ { id: '1', purchaseNo: 'jgqp11111111111', custssName: 0, creatDate: '产品1', custName: 'jgqp111123545', totalP: '箭冠品牌', totalNums: '产品分类1', totalPrice: '5', payType: '122' }
|
|
|
|
+ ],
|
|
|
|
+ count: 10
|
|
|
|
+ }
|
|
|
|
+ const no = (data.pageNo - 1) * data.pageSize
|
|
|
|
+ for (var i = 0; i < data.list.length; i++) {
|
|
|
|
+ data.list[i].no = no + i + 1
|
|
|
|
+ }
|
|
|
|
+ _this.disabled = false
|
|
|
|
+ resolve(data)
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ openModal: false, // 选择基本信息弹框是否显示
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ // 重置
|
|
|
|
+ resetSearchForm () {
|
|
|
|
+ this.queryParam.orderBundleNo = ''
|
|
|
|
+ this.queryParam.orderBundle.custMobile = ''
|
|
|
|
+ this.queryParam.bundleName = ''
|
|
|
|
+ this.queryParam.itemName = ''
|
|
|
|
+ this.oldTime = undefined
|
|
|
|
+ this.newTime = undefined
|
|
|
|
+ this.$refs.table.refresh(true)
|
|
|
|
+ },
|
|
|
|
+ // 添加
|
|
|
|
+ handleAdd(row){},
|
|
|
|
+ // 删除
|
|
|
|
+ handleDel(row){},
|
|
|
|
+ // 编辑基本信息
|
|
|
|
+ handleEditInfo(){
|
|
|
|
+ this.openModal = true
|
|
|
|
+ },
|
|
|
|
+ // 基本信息 保存
|
|
|
|
+ handleOk(){
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+ // 提交
|
|
|
|
+ handleSubmit(){},
|
|
|
|
+ // 导入明细
|
|
|
|
+ handleImport(){
|
|
|
|
+ console.log(333)
|
|
|
|
+ },
|
|
|
|
+ // 返回列表
|
|
|
|
+ handleBack(){
|
|
|
|
+ this.$router.push({ path: '/inventoryManagement/warehouseAllocation/list'})
|
|
|
|
+ },
|
|
|
|
+ filterOption(input, option) {
|
|
|
|
+ return (
|
|
|
|
+ option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
|
|
|
+ )
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ beforeRouteEnter (to, from, next) {
|
|
|
|
+ next(vm => {
|
|
|
|
+ vm.openModal = false
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style lang="less">
|
|
|
|
+ .warehouseAllocationEdit-wrap{
|
|
|
|
+ .warehouseAllocationEdit-back{
|
|
|
|
+ margin-bottom: 15px;
|
|
|
|
+ }
|
|
|
|
+ .warehouseAllocationEdit-cont{
|
|
|
|
+ margin-bottom: 15px;
|
|
|
|
+ .sub-title{
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ color: #808695;
|
|
|
|
+ margin-left: 10px;
|
|
|
|
+ }
|
|
|
|
+ .tag-txt{
|
|
|
|
+ font-size: 12px;
|
|
|
|
+ color: #ff0000;
|
|
|
|
+ }
|
|
|
|
+ .edit-circle-btn{
|
|
|
|
+ margin-left: 15px;
|
|
|
|
+ i{
|
|
|
|
+ vertical-align: text-bottom;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ .import-btn{
|
|
|
|
+ margin-left: 15px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+</style>
|