123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465 |
- <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>
-
- <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 size="small" :bordered="false" class="warehouseAllocationEdit-cont">
- <a-collapse :activeKey="['1']">
- <a-collapse-panel key="1">
- <template slot="header">
- 基础信息
-
- </template>
- <a-descriptions :column="3">
- <a-descriptions-item label="调出仓库">{{ warehouse?warehouse.outWarehouseName:'' }}</a-descriptions-item>
- <a-descriptions-item label="调入仓库">{{ warehouse?warehouse.putWarehouseName:'' }}</a-descriptions-item>
- </a-descriptions>
- </a-collapse-panel>
- </a-collapse>
- </a-card>
-
- <a-card size="small" :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="productCode">
- <a-input id="warehouseAllocationEdit-productCode" v-model="queryParam.productCode" placeholder="请输入产品编码" allowClear />
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="产品名称" prop="productName">
- <a-input id="warehouseAllocationEdit-productName" v-model="queryParam.productName" placeholder="请输入产品名称" allowClear />
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="原厂编码" prop="productOrigCode">
- <a-input id="warehouseAllocationEdit-productOrigCode" v-model="queryParam.productOrigCode" placeholder="请输入原厂编码" allowClear />
- </a-form-item>
- </a-col>
- <template v-if="advanced">
- <a-col :md="6" :sm="24">
- <a-form-item label="产品品牌" prop="brandSn">
- <a-select
- placeholder="请选择"
- id="warehouseAllocationEdit-state"
- allowClear
- v-model="queryParam.brandSn"
- :showSearch="true"
- option-filter-prop="children"
- :filter-option="filterOption">
- <a-select-option v-for="item in brandData" :key="item.brandSn" :value="item.brandSn">{{ item.brandName }}</a-select-option>
- </a-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="产品类别" prop="brandSn">
- <a-cascader
- :field-names="{ label: 'productTypeName', value: 'productTypeSn', children: 'children'}"
- :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="调出仓位" prop="brandSn">
- <a-select id="warehouseAllocationEdit-warehouse" placeholder="请选择" allowClear v-model="queryParam.warehouse" style="width: 100%;">
- <a-select-option v-for="item in warehouseOutLocData" :key="item.warehouseLocationSn" :value="item.warehouseLocationSn">{{ item.name }}</a-select-option>
- </a-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"
- :scroll="{ x: 1560 }"
- bordered>
-
- <template slot="type" slot-scope="text, record">
- <span>{{ record.productTypeName2||'' }}</span><span v-if="record.productTypeName3"><strong>-</strong>{{ record.productTypeName3||'' }}</span>
- {{ record.productTypeName2+(record.productTypeName3?('-'+record.productTypeName3):'') }}
- </template>
-
- <template slot="storageQuantity" slot-scope="text, record">
- <a-select id="warehouseAllocationEdit-warehouse" placeholder="请选择" allowClear v-model="record.putWarehouseLocationSn" style="width: 100%;">
- <a-select-option v-for="item in warehousePutLocData" :key="item.warehouseLocationSn" :value="item.warehouseLocationSn">{{ item.name }}</a-select-option>
- </a-select>
- </template>
-
- <template slot="transferOutQuantity" slot-scope="text, record">
- <a-input-number
- id="warehouseAllocationEdit-allocationQty"
- :value="record.allocationQty"
- :precision="0"
- :min="0"
- :max="999999"
- placeholder="请输入" />
- </template>
-
- <template slot="action" slot-scope="text, record">
- <a-button size="small" type="link" @click="handleAdd(record)" id="warehouseAllocationEdit-add-btn">添加</a-button>
- </template>
- </s-table>
- </a-collapse-panel>
- </a-collapse>
- </a-card>
-
- <a-card size="small" :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>{{ productTotalCost }}</strong>,总数量: <strong>{{ productTotalQty }}</strong> ,总款数: <strong>{{ productTotalCategory }}</strong> </div>
- </a-alert>
-
- <a-row :gutter="15" justify="space-between">
- <a-col :span="17">
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="$refs.chooseTable.refresh(true)">
- <a-row :gutter="15">
- <a-col :md="9" :sm="24">
- <a-form-item label="产品编码" prop="productCode">
- <a-input id="warehouseAllocationEdit-productCode" v-model="chooseParam.productCode" placeholder="请输入产品编码" allowClear />
- </a-form-item>
- </a-col>
- <a-col :md="9" :sm="24">
- <a-form-item label="产品名称" prop="productName">
- <a-input id="warehouseAllocationEdit-productName" v-model="chooseParam.productName" 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="resetChooseSearchForm" :disabled="disabled" id="warehouseAllocationList-reset">重置</a-button>
- </a-col>
- </a-row>
- </a-form>
- </div>
- </a-col>
- <a-col :span="7">
-
-
- <a-button size="small" id="warehouseAllocationEdit-import-btn" style="margin-left: 8px">导入明细</a-button>
- <a-button size="small" type="danger" id="warehouseAllocationEdit-del-all-btn" style="margin: 0 0 8px 8px;">整单删除</a-button>
- </a-col>
- </a-row>
-
- <s-table
- class="sTable"
- ref="chooseTable"
- size="default"
- :rowKey="(record) => record.id"
- :columns="chooseColumns"
- :data="chooseLoadData"
- :scroll="{ x: 1460 }"
- bordered>
-
- <template slot="type" slot-scope="text, record">
- {{ record.productTypeName2+(record.productTypeName3?('-'+record.productTypeName3):'') }}
- </template>
-
- <template slot="storageQuantity" slot-scope="text, record">
- <a-select id="warehouseAllocationEdit-warehouse" placeholder="请选择" allowClear v-model="record.putWarehouseLocationSn" style="width: 100%;">
- <a-select-option v-for="item in warehousePutLocData" :key="item.warehouseLocationSn" :value="item.warehouseLocationSn">{{ item.name }}</a-select-option>
- </a-select>
- </template>
-
- <template slot="transferOutQuantity" slot-scope="text, record">
- <a-input-number
- id="warehouseAllocationEdit-allocationQty"
- :value="record.allocationQty"
- :precision="0"
- :min="0"
- :max="999999"
- placeholder="请输入" />
- </template>
-
- <template slot="action" slot-scope="text, record">
- <a-button size="small" type="link" @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" id="warehouseAllocationEdit-submit" 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'
- import { dealerProductBrandQuery } from '@/api/dealerProductBrand.js'
- import { dealerProductTypeList } from '@/api/dealerProductType.js'
- import { warehouseLocAllList } from '@/api/warehouse.js'
- import { productQuery, allocWarehouseFind, allocWarehouseDetailTotal, allocWarehouseDetailQuery, allocWarehouseDetailSave, allocWarehouseDetailDelete } from '@/api/allocWarehouse.js'
- export default {
- components: { STable, VSelect, basicInfoModal },
- data () {
- return {
- id: '',
- queryParam: {
- outWarehouseSn: '',
- productCode: '',
- productName: '',
- productOrigCode: '',
- brandName: '',
- typeName: ''
- },
- chooseParam: {
- allocationWarehouseSn: '',
- productCode: '',
- productName: ''
- },
- productTotalCost: 0,
- productTotalQty: 0,
- productTotalCategory: 0,
- warehouse: null,
- brandData: [],
- typeData: [],
- warehousePutLocData: [],
- warehouseOutLocData: [],
- disabled: false,
- advanced: false,
-
- columns: [
- { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
- { title: '产品编码', dataIndex: 'productCode', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '产品名称', dataIndex: 'productName', width: 200, align: 'center', ellipsis: true },
- { title: '原厂编码', dataIndex: 'productOrigCode', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '品牌', dataIndex: 'brandName', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '类别', width: 160, align: 'center', scopedSlots: { customRender: 'type' } },
- { title: '调出仓位', dataIndex: 'outWarehouseLocationName', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '调入仓位', scopedSlots: { customRender: 'storageQuantity' }, width: 140, align: 'center' },
- { title: '库存数量', dataIndex: 'currentQty', width: 100, align: 'center', customRender: function (text) { return ((text || text == 0) ? text : '--') } },
- { title: '单位', dataIndex: 'productUnit', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '调出数量', scopedSlots: { customRender: 'transferOutQuantity' }, width: 140, align: 'center' },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: 100, align: 'center', fixed: 'right' }
- ],
-
- loadData: parameter => {
- this.disabled = true
- return productQuery(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
- })
- },
-
- chooseColumns: [
- { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
- { title: '产品编码', dataIndex: 'productCode', width: 140, align: 'center', sorter: true, customRender: function (text) { return text || '--' } },
- { title: '产品名称', dataIndex: 'productName', width: 200, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '原厂编码', dataIndex: 'productOrigCode', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '品牌', dataIndex: 'brandName', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '类别', width: 160, align: 'center', scopedSlots: { customRender: 'type' } },
- { title: '调出仓位', dataIndex: 'outWarehouseLocationName', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '调入仓位', dataIndex: 'custsNakme', width: 140, align: 'center', scopedSlots: { customRender: 'storageQuantity' } },
- { title: '单位', dataIndex: 'productUnit', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '调出数量', scopedSlots: { customRender: 'transferOutQuantity' }, width: 140, align: 'center' },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: 100, align: 'center', fixed: 'right' }
- ],
-
- chooseLoadData: parameter => {
- this.disabled = true
- return allocWarehouseDetailQuery(Object.assign(parameter, this.chooseParam)).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.getProduceTotal()
- this.disabled = false
- return 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)
- },
-
- resetChooseSearchForm () {
- this.chooseParam.productCode = ''
- this.chooseParam.productName = ''
- this.$refs.chooseTable.refresh(true)
- },
-
- getProductBrand () {
- dealerProductBrandQuery({}).then(res => {
- this.brandData = res.data || []
- })
- },
-
- getProductType () {
- dealerProductTypeList({}).then(res => {
- this.typeData = res.data || []
- console.log(res, this.typeData, '--------获取产品分类')
- })
- },
-
- getWarehouseLoc (sn, type) {
- warehouseLocAllList({ warehouseSn: sn }).then(res => {
- if (type == 'put') {
- this.warehousePutLocData = res.data || []
- } else {
- this.warehouseOutLocData = res.data || []
- }
-
- })
- },
-
- getHouse () {
- allocWarehouseFind({ id: this.id }).then(res => {
- if (res.status == 200) {
- this.warehouse = res.data
- this.getWarehouseLoc(this.warehouse.putWarehouseSn, 'put')
- this.getWarehouseLoc(this.warehouse.outWarehouseSn, 'out')
- } else {
- this.warehouse = null
- }
- })
- },
-
- getProduceTotal () {
- allocWarehouseDetailTotal(this.chooseParam).then(res => {
- console.log(res, '-----总计----')
- if (res.status == 200) {
- this.productTotalCost = this.data.productTotalCost
- this.productTotalQty = this.data.productTotalQty
- this.productTotalCategory = this.data.productTotalCategory
- } else {
- this.productTotalCost = 0
- this.productTotalQty = 0
- this.productTotalCategory = 0
- }
- })
- },
-
- handleAdd (row) {
- const params = {
- }
- },
-
- handleDel (row) {},
-
- handleEditInfo () {
- this.openModal = true
- },
-
- handleOk () {
- },
-
- handleSubmit () {},
-
- handleImport () {
- console.log(333)
- },
-
- handleBack () {
- this.$router.push({ path: '/allocationManagement/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
- vm.id = vm.$route.params.id
- vm.chooseParam.allocationWarehouseSn = vm.$route.params.sn
- vm.getProductBrand()
- vm.getProductType()
- vm.getHouse()
- console.log(vm.id, vm.$route.params, 'vm.id')
- })
- }
- }
- </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: #ed1c24;
- }
- .edit-circle-btn{
- margin-left: 15px;
- i{
- vertical-align: text-bottom;
- }
- }
- .import-btn{
- margin-left: 15px;
- }
- }
- }
- </style>
|