半成品出库
This commit is contained in:
@@ -157,3 +157,40 @@ export const getAll = (id, btime, etime, code, scode, type) => post('api/pda/bcp
|
||||
export const bcpInConfirm = (row) => post('api/pda/bcp/in/confirm', {
|
||||
row: row
|
||||
})
|
||||
|
||||
/**
|
||||
* 半成品出库
|
||||
*/
|
||||
// 1.1仓库下拉框
|
||||
export const outgetBcpStor = () => post('api/pda/bcp/out/getBcpStor', {})
|
||||
// 1.2单据类型下拉框
|
||||
export const outgetBillType = () => post('api/pda/bcp/out/getBillType', {})
|
||||
// 1.3物料选择页面
|
||||
export const outgetMaterial = (code, scode, is) => post('api/pda/bcp/out/getMaterial', {
|
||||
material_code: code,
|
||||
struct_code: scode,
|
||||
is_material: is
|
||||
})
|
||||
// 1.4出库点下拉框
|
||||
export const outgetPoint = () => post('api/pda/bcp/out/getPoint', {})
|
||||
// 1.5确认入库(按钮)
|
||||
export const outcreateIn = (from) => post('api/pda/bcp/out/createIn', {
|
||||
from: from
|
||||
})
|
||||
|
||||
/**
|
||||
* 半成品出库查询
|
||||
*/
|
||||
// 2.1半成品出库查询
|
||||
export const outgetAll = (id, btime, etime, code, scode, type) => post('api/pda/bcp/out/getAll', {
|
||||
stor_id: id,
|
||||
begin_time: btime,
|
||||
end_time: etime,
|
||||
material_code: code,
|
||||
storagevehicle_code: scode,
|
||||
bill_type: type
|
||||
})
|
||||
// 2.2强制确认(按钮)
|
||||
export const bcpOutConfirm = (row) => post('api/pda/bcp/out/confirm', {
|
||||
row: row
|
||||
})
|
||||
|
||||
@@ -26,7 +26,7 @@ export default {
|
||||
},
|
||||
computed: {
|
||||
title () {
|
||||
let res = ['半成品入库', '半成品入库查询', '半成品出库', '半成品出库查询', '半成品盘点', '半成品盘点查询', '半成品拼盘查询', '物料查询'][Number(this.$route.meta.guidePath) - 1]
|
||||
let res = ['半成品入库', '半成品入库查询', '半成品出库', '半成品出库查询', '半成品盘点', '半成品盘点查询', '半成品拼盘查询', '物料查询', '物料查询'][Number(this.$route.meta.guidePath) - 1]
|
||||
return res
|
||||
},
|
||||
...mapGetters(['keepAlive'])
|
||||
|
||||
99
src/pages/modules/semifinished/out-mater-search.vue
Normal file
99
src/pages/modules/semifinished/out-mater-search.vue
Normal file
@@ -0,0 +1,99 @@
|
||||
<template>
|
||||
<div class="order-wraper">
|
||||
<div class="search-confirm-wrap">
|
||||
<div class="search-wrap">
|
||||
<!-- <div class="search-item">
|
||||
<div class="search-label">类别</div>
|
||||
<div class="filter_input_wraper">
|
||||
<el-select v-model="value1" filterable clearable placeholder="请选择">
|
||||
<el-option
|
||||
v-for="item in options1"
|
||||
:key="item.stor_id"
|
||||
:label="item.stor_name"
|
||||
:value="item.stor_id">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
</div> -->
|
||||
<div class="search-item">
|
||||
<div class="search-label">物料</div>
|
||||
<div class="filter_input_wraper">
|
||||
<input type="text" class="filter-input" v-model="val1">
|
||||
</div>
|
||||
</div>
|
||||
<div class="search-item_2 flexend">
|
||||
<button class="button button--primary" @click="_getMaterial">快速查询</button>
|
||||
<button class="button button--primary" :class="{'button--defalut': pkId === ''}" @click="toSure">确定</button>
|
||||
<button class="button button--primary" @click="clearUp">清除</button>
|
||||
<button class="button button--primary" @click="colseUp">关闭</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid_wraper">
|
||||
<table class="filter-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>序号</th>
|
||||
<th>物料编号</th>
|
||||
<th>物料名称</th>
|
||||
<th>物料类别</th>
|
||||
<th>重量单位</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="(e, i) in dataList" :key="i" :class="{'selected_icon': pkId === e.material_code}" @click="toRadio(e)">
|
||||
<td>{{ i+1 }}</td>
|
||||
<td>{{e.material_code}}</td>
|
||||
<td>{{e.material_name}}</td>
|
||||
<td>{{e.class_code}}</td>
|
||||
<td>{{e.unit_name}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {getMaterial} from '@config/getData2.js'
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
options1: [],
|
||||
value1: '',
|
||||
val1: '',
|
||||
dataList: [],
|
||||
pkId: '',
|
||||
pkObj: {}
|
||||
}
|
||||
},
|
||||
created () {
|
||||
this._getMaterial()
|
||||
},
|
||||
methods: {
|
||||
// grid
|
||||
async _getMaterial () {
|
||||
let res = await getMaterial(this.val1)
|
||||
this.dataList = [...res.data]
|
||||
},
|
||||
colseUp () {
|
||||
this.$router.push('/semifinishedinstore')
|
||||
},
|
||||
toRadio (e) {
|
||||
this.pkId = this.pkId === e.material_code ? '' : e.material_code
|
||||
this.pkObj = this.pkId === e.material_code ? e : {}
|
||||
},
|
||||
toSure () {
|
||||
this.$store.dispatch('setMaterObj', JSON.stringify(this.pkObj))
|
||||
this.colseUp()
|
||||
},
|
||||
clearUp () {
|
||||
this.pkId = ''
|
||||
this.pkObj = {}
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="stylus" scoped>
|
||||
</style>
|
||||
@@ -20,6 +20,7 @@ const semiFinishedCheck = r => require.ensure([], () => r(require('@page/modules
|
||||
const semiFinishedCheckSearch = r => require.ensure([], () => r(require('@page/modules/semifinished/semi-finished-check-search')), 'semifinished')
|
||||
const semiFinishedComposeSearch = r => require.ensure([], () => r(require('@page/modules/semifinished/semi-finished-compose-search')), 'semifinished')
|
||||
const materSearch = r => require.ensure([], () => r(require('@page/modules/semifinished/mater-search')), 'semifinished')
|
||||
const outMaterSearch = r => require.ensure([], () => r(require('@page/modules/semifinished/out-mater-search')), 'semifinished')
|
||||
|
||||
const Homeset = r => require.ensure([], () => r(require('@page/homeset/index')), 'Homeset')
|
||||
const Home = r => require.ensure([], () => r(require('@page/homeset/HomePage')), 'HomePage')
|
||||
@@ -106,10 +107,15 @@ export default new Router({
|
||||
}, {
|
||||
path: '/semifinishedcomposesearch',
|
||||
component: semiFinishedComposeSearch,
|
||||
meta: {guidePath: '7'}
|
||||
}, {
|
||||
path: '/matersearch',
|
||||
component: materSearch,
|
||||
meta: {guidePath: '8'}
|
||||
}, {
|
||||
path: '/materSearch',
|
||||
component: materSearch
|
||||
path: '/outmatersearch',
|
||||
component: outMaterSearch,
|
||||
meta: {guidePath: '9'}
|
||||
}]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user