|
@@ -15,7 +15,7 @@
|
|
|
</a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
|
<a-form-item label="货架名称">
|
|
|
- <shelfSList ref="shelfList" @change="shelfChange" :itemSn="queryParam.shelfSn"></shelfSList>
|
|
|
+ <shelfSList v-model="queryParam.shelfSn"></shelfSList>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<template v-if="advanced">
|
|
@@ -30,7 +30,7 @@
|
|
|
</template>
|
|
|
<a-col :md="6" :sm="24">
|
|
|
<span class="table-page-search-submitButtons">
|
|
|
- <a-button type="info" style="margin-left: 5px" @click="taskIn" :disabled="disabled" >定时任务</a-button>
|
|
|
+ <!-- <a-button type="info" style="margin-left: 5px" @click="taskIn" :disabled="disabled" >定时任务</a-button> -->
|
|
|
<a-button type="primary" style="margin-left: 5px" @click="queryByTypeSum" :disabled="disabled" id="replenishmentManagementList-refresh">查询</a-button>
|
|
|
<a-button style="margin-left: 5px" @click="resetSearchForm()" :disabled="disabled" id="replenishmentManagementList-reset">重置</a-button>
|
|
|
<a @click="advanced = !advanced" style="margin-left: 5px">
|
|
@@ -108,7 +108,7 @@ import { commonMixin } from '@/utils/mixin'
|
|
|
import { STable, VSelect } from '@/components'
|
|
|
import getDate from '@/libs/getDate.js'
|
|
|
import rangeDate from '@/views/common/rangeDate.vue'
|
|
|
-import shelfSList from '@/views/common/shelfList.vue'
|
|
|
+import shelfSList from '@/views/common/shelfList'
|
|
|
import confirmModal from './confirmModal.vue'
|
|
|
import stockModal from './stockModal.vue'
|
|
|
import printStickerModal from './printStickerModal.vue'
|
|
@@ -315,10 +315,6 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- // 货架 change
|
|
|
- shelfChange (obj) {
|
|
|
- this.queryParam.shelfSn = obj.key || undefined
|
|
|
- },
|
|
|
expandFun (expanded, record) {
|
|
|
if (expanded) {
|
|
|
this.expandedRowKeys.push(record.id)
|
|
@@ -359,7 +355,6 @@ export default {
|
|
|
this.queryParam.bizType = this.curBizType
|
|
|
this.queryParam.replenishBillNo = ''
|
|
|
this.queryParam.shelfSn = undefined
|
|
|
- this.$refs.shelfList.resetForm()
|
|
|
this.queryParam.productCode = ''
|
|
|
this.queryParam.productName = ''
|
|
|
},
|