Merge pull request 'b_lms_master_merge' (#3) from b_lms into master_merge
Reviewed-on: http://121.40.234.130:8899/root/lanzhouhailiang_one/pulls/3
This commit is contained in:
@@ -45,7 +45,7 @@
|
||||
<el-table-column show-overflow-tooltip prop="quanlity_in_box" label="箱内子卷数" align="center" />
|
||||
<el-table-column show-overflow-tooltip prop="package_box_sn" label="木箱号" align="center" />
|
||||
<el-table-column show-overflow-tooltip prop="container_name" label="子卷号" align="center" />
|
||||
<el-table-column show-overflow-tooltip prop="sap_pcsn" label="sap批次" align="center" />
|
||||
<el-table-column show-overflow-tooltip prop="paper_tube_description" label="子卷规格" align="center" />
|
||||
</el-table>
|
||||
</el-card>
|
||||
<div style="margin-bottom: 20px;" />
|
||||
@@ -82,9 +82,10 @@
|
||||
type="primary"
|
||||
icon="el-icon-plus"
|
||||
size="mini"
|
||||
:disabled="isButtonDisabled"
|
||||
@click="divStruct()"
|
||||
>
|
||||
分配
|
||||
分配木箱规格
|
||||
</el-button>
|
||||
</span>
|
||||
</div>
|
||||
@@ -103,10 +104,10 @@
|
||||
<el-table-column type="selection" width="55" />
|
||||
<el-table-column show-overflow-tooltip prop="box_group" label="木箱组" align="center" width="130" />
|
||||
<el-table-column show-overflow-tooltip prop="container_name" label="子卷号" align="center" />
|
||||
<el-table-column show-overflow-tooltip prop="sap_pcsn" label="sap批次" align="center" />
|
||||
<el-table-column show-overflow-tooltip prop="paper_tube_description" label="子卷规格" align="center" />
|
||||
</el-table>
|
||||
</el-card>
|
||||
<MaterDiv ref="child" :dialog-show.sync="structShow" :sect-prop="sectProp" @tableChanged="tableChanged" />
|
||||
<MaterDiv ref="child" :dialog-show.sync="structShow" :paper-tube-description="paperTubeDescription" :sect-prop="sectProp" @tableChanged="tableChanged" />
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
@@ -150,6 +151,7 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
isButtonDisabled: false, // 木箱规格分配按钮
|
||||
searchText: '',
|
||||
// 存储搜索前的选中状态
|
||||
previousSelection: [],
|
||||
@@ -164,6 +166,7 @@ export default {
|
||||
stor_id: '',
|
||||
sect_id: '',
|
||||
sectProp: null,
|
||||
paperTubeDescription: '',
|
||||
bucketProp: {},
|
||||
structShow: false,
|
||||
bucketObj: null,
|
||||
@@ -299,6 +302,7 @@ export default {
|
||||
// 表格1的行点击事件
|
||||
handleRowClick(scope) {
|
||||
debugger
|
||||
this.isButtonDisabled = !!(scope.status !== '99' || scope.box_group !== '0')
|
||||
const table2 = this.$refs.dis_table
|
||||
const table2Data = Array.from(this.openParam)
|
||||
const groupValue = scope.box_group === '0' ? scope.container_name : scope.box_group
|
||||
@@ -333,9 +337,9 @@ export default {
|
||||
debugger
|
||||
this.form.tableMater = this.currentSelection
|
||||
this.form.checked = row.material_code
|
||||
this.form.sale_order_name = this.sale_order_name
|
||||
this.form.sale_order_name = this.saleOrderName
|
||||
await crudPackagerelation.updateEntityList(this.form)
|
||||
const res = crudSubpackagerelation.queryContainerization({ 'sale_order_name': this.sale_order_name })
|
||||
const res = crudSubpackagerelation.queryContainerization({ 'sale_order_name': this.saleOrderName })
|
||||
this.openParam = res.content
|
||||
this.clearSelection()
|
||||
this.form.tableMater = []
|
||||
@@ -343,7 +347,11 @@ export default {
|
||||
this.$emit('childEvent')
|
||||
},
|
||||
divStruct() {
|
||||
debugger
|
||||
if (this.currentSelection.length > 0 && this.$refs.dis_table.selection.length > 0) {
|
||||
debugger
|
||||
const paper_description = this.currentSelection.filter(item => item.paper_tube_description !== null && item.paper_tube_description !== '')
|
||||
this.paperTubeDescription = paper_description[0].paper_tube_description
|
||||
this.structShow = true
|
||||
this.$refs.child.getMsg(false)
|
||||
} else {
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
clearable
|
||||
style="width: 200px"
|
||||
size="mini"
|
||||
placeholder="输入木箱物料名称"
|
||||
placeholder="输入关键词搜索"
|
||||
prefix-icon="el-icon-search"
|
||||
class="filter-item"
|
||||
/> </el-col>
|
||||
@@ -38,8 +38,13 @@
|
||||
@select-all="onSelectAll"
|
||||
>
|
||||
<el-table-column type="selection" width="55" />
|
||||
<el-table-column prop="material_code" label="木箱规格" />
|
||||
<el-table-column prop="box_no" label="木箱号" />
|
||||
<el-table-column prop="material_code" label="物料编码" />
|
||||
<el-table-column prop="material_name" label="物料名称" />
|
||||
<el-table-column prop="box_length" label="木箱长度" />
|
||||
<el-table-column prop="box_width" label="木箱宽度" />
|
||||
<el-table-column prop="box_high" label="木箱高度" />
|
||||
<el-table-column prop="num" label="最大装卷数" />
|
||||
</el-table>
|
||||
<!--分页组件-->
|
||||
<pagination />
|
||||
@@ -47,6 +52,36 @@
|
||||
<el-button @click="dialogVisible = false">取 消</el-button>
|
||||
<el-button type="primary" @click="submit">确 定</el-button>
|
||||
</span>
|
||||
<el-dialog
|
||||
:visible.sync="dialogVisible1"
|
||||
width="28%"
|
||||
append-to-body
|
||||
@close="dialogVisible1 = false"
|
||||
>
|
||||
<template v-slot:title>
|
||||
<span class="warning-text1">提醒</span>
|
||||
</template>
|
||||
<br>
|
||||
<br>
|
||||
<span class="warning-text">
|
||||
请仔细核对子卷与木箱规格是否匹配,
|
||||
<br>
|
||||
<br>
|
||||
<span class="red-text">木箱长度为:{{ this.boxLength }}</span>,
|
||||
<br>
|
||||
<br>
|
||||
<span class="red-text">子卷规格为:{{ this.paperTubeDescription }}</span>,
|
||||
<br>
|
||||
<br>
|
||||
点击确定后将立即生成木箱出库任务,无法更改!
|
||||
</span>
|
||||
<br>
|
||||
<br>
|
||||
<span slot="footer" class="dialog-footer">
|
||||
<el-button @click="dialogVisible1 = false">取消</el-button>
|
||||
<el-button type="primary" @click="confirmSubmit">确定</el-button>
|
||||
</span>
|
||||
</el-dialog>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
@@ -63,10 +98,10 @@ export default {
|
||||
return CRUD({
|
||||
title: '木箱规格',
|
||||
optShow: {},
|
||||
url: 'api/Materialbase',
|
||||
idField: 'material_id',
|
||||
sort: 'material_id,desc',
|
||||
query: { box: '木箱', search: 'MX', material_id: '' },
|
||||
url: 'api/pdmBiSubpackagerelation/queryBoxSpec',
|
||||
idField: 'box_id',
|
||||
sort: 'material_name,desc',
|
||||
query: { material_id: '' },
|
||||
crudMethod: { ...crudMaterattr }
|
||||
})
|
||||
},
|
||||
@@ -78,12 +113,18 @@ export default {
|
||||
},
|
||||
sectProp: {
|
||||
type: Object
|
||||
},
|
||||
paperTubeDescription: {
|
||||
type: String,
|
||||
default: ''
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
boxLength: '',
|
||||
classes: [],
|
||||
dialogVisible: false,
|
||||
dialogVisible1: false,
|
||||
sect: {},
|
||||
checkrow: {},
|
||||
rows: [],
|
||||
@@ -170,14 +211,39 @@ export default {
|
||||
submit() {
|
||||
debugger
|
||||
this.rows = this.$refs.table.selection
|
||||
this.boxLength = this.rows[0].box_length
|
||||
if (this.rows.length <= 0) {
|
||||
this.$message('请先选择木箱信息')
|
||||
return
|
||||
}
|
||||
this.dialogVisible1 = true
|
||||
},
|
||||
confirmSubmit() {
|
||||
this.dialogVisible1 = false
|
||||
this.$emit('update:dialogShow', false)
|
||||
this.$emit('tableChanged', this.checkrow)
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.warning-text {
|
||||
color: black;
|
||||
text-align: left;
|
||||
font-size: 18px;
|
||||
display: block;
|
||||
}
|
||||
.red-text {
|
||||
color: red;
|
||||
text-align: left;
|
||||
font-size: 17px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.warning-text1 {
|
||||
color: orange;
|
||||
text-align: left;
|
||||
font-size: 19px;
|
||||
display: block;
|
||||
font-weight: bold;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -127,7 +127,7 @@
|
||||
<DivDialog
|
||||
:dialog-show.sync="divShow"
|
||||
:open-param="openParam"
|
||||
:sale_order_name="this.sale_order_name"
|
||||
:sale-order-name="this.saleOrderName"
|
||||
@childEvent="handleChildEvent"
|
||||
@AddChanged="querytable"
|
||||
/>
|
||||
@@ -198,7 +198,7 @@ export default {
|
||||
activeName: 'first',
|
||||
divShow: false,
|
||||
openParam: [],
|
||||
sale_order_name: null,
|
||||
saleOrderName: null,
|
||||
bussConfig: null,
|
||||
currentRow: null,
|
||||
dis_flag: true,
|
||||
@@ -224,15 +224,13 @@ export default {
|
||||
this.crud.toQuery()
|
||||
},
|
||||
async divOpen() {
|
||||
debugger
|
||||
this.sale_order_name = this.currentRow.sale_order_name
|
||||
this.saleOrderName = this.currentRow.sale_order_name
|
||||
const res = await crudSubpackagerelation.queryContainerization({ 'sale_order_name': this.currentRow.sale_order_name })
|
||||
this.openParam = res.content
|
||||
// this.divShow = true
|
||||
},
|
||||
divOpen1() {
|
||||
debugger
|
||||
this.sale_order_name = this.currentRow.sale_order_name
|
||||
this.saleOrderName = this.currentRow.sale_order_name
|
||||
crudSubpackagerelation.queryContainerization({ 'sale_order_name': this.currentRow.sale_order_name }).then(res => {
|
||||
this.openParam = res.content
|
||||
this.divShow = true
|
||||
|
||||
Reference in New Issue
Block a user