diff --git a/mes/hd/nladmin-system/src/main/java/org/nl/wms/mps_manage/ordermanage/service/saleOrder/dao/mapper/xml/MpsSaleOrderMapper.xml b/mes/hd/nladmin-system/src/main/java/org/nl/wms/mps_manage/ordermanage/service/saleOrder/dao/mapper/xml/MpsSaleOrderMapper.xml
index abcdf4bd..2d2e221c 100644
--- a/mes/hd/nladmin-system/src/main/java/org/nl/wms/mps_manage/ordermanage/service/saleOrder/dao/mapper/xml/MpsSaleOrderMapper.xml
+++ b/mes/hd/nladmin-system/src/main/java/org/nl/wms/mps_manage/ordermanage/service/saleOrder/dao/mapper/xml/MpsSaleOrderMapper.xml
@@ -20,13 +20,13 @@
and der.sale_code = #{query.sale_code}
- and der.status >= #{query.status}
+ and der.status = #{query.status}
- and der.sale_type >= #{query.sale_type}
+ and der.sale_type = #{query.sale_type}
- and der.cust_code >= #{query.cust_code}
+ and der.cust_code = #{query.cust_code}
diff --git a/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/IOSEnum.java b/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/IOSEnum.java
index 022ba03b..5c7b0ba5 100644
--- a/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/IOSEnum.java
+++ b/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/IOSEnum.java
@@ -26,8 +26,10 @@ public enum IOSEnum {
, "领料出库", "21", "销售出库", "22", "手工出库", "23")),
//单据状态
BILL_STATUS(MapOf.of("生成", "10", "分配中", "20", "分配完", "30", "完成", "99")),
- //单据状态
+ //分配单据状态
WORK_STATUS(MapOf.of("未生成", "00", "生成", "10", "执行中", "20", "完成", "99")),
+ //订单/发货单 状态
+ ORDER_STATUS(MapOf.of("生成", "10", "提交", "20", "发货中", "30", "确认", "99")),
//锁定类型
LOCK_TYPE(MapOf.of("未锁定", "0", "入库锁", "1", "出库锁", "2","盘点锁", "3","损溢锁", "4","其他锁","99")),
;
diff --git a/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/iostorInv/impl/StIvtIostorinvCpOutServiceImpl.java b/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/iostorInv/impl/StIvtIostorinvCpOutServiceImpl.java
index a40bda7a..eadbfacb 100644
--- a/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/iostorInv/impl/StIvtIostorinvCpOutServiceImpl.java
+++ b/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/iostorInv/impl/StIvtIostorinvCpOutServiceImpl.java
@@ -49,6 +49,8 @@ import org.nl.wms.storage_manage.productmanage.service.iostorInv.dao.StIvtIostor
import org.nl.wms.storage_manage.productmanage.service.iostorInv.dao.StIvtIostorinvdtlCp;
import org.nl.wms.storage_manage.productmanage.service.iostorInv.dao.mapper.StIvtIostorinvCpMapper;
import org.nl.wms.storage_manage.productmanage.service.iostorInv.dto.IostorInvQuery;
+import org.nl.wms.storage_manage.productmanage.service.moreOrLess.IStIfDeliveryorderCpService;
+import org.nl.wms.storage_manage.productmanage.service.moreOrLess.dao.StIfDeliveryorderCp;
import org.nl.wms.storage_manage.productmanage.service.structIvt.IStIvtStructivtCpService;
import org.nl.wms.storage_manage.productmanage.service.structIvt.dao.StIvtStructivtCp;
import org.nl.wms.storage_manage.productmanage.util.ChangeIvtUtil;
@@ -113,6 +115,9 @@ public class StIvtIostorinvCpOutServiceImpl extends ServiceImpl list = iostorinvdtlCpService.list(
+ new QueryWrapper().lambda()
+ .eq(StIvtIostorinvdtlCp::getIostorinv_id, id)
+ );
+
+ list.forEach(item -> {
+ iStIfDeliveryorderCpService.update(
+ new UpdateWrapper().lambda()
+ .set(StIfDeliveryorderCp::getStatus, IOSEnum.ORDER_STATUS.code("生成"))
+ .eq(StIfDeliveryorderCp::getDeliver_id, item.getSource_billdtl_id())
+ );
+ });
+
}
}
diff --git a/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/iostorInv/impl/StIvtIostorinvCpServiceImpl.java b/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/iostorInv/impl/StIvtIostorinvCpServiceImpl.java
index 9f5b8e98..08f4d6cf 100644
--- a/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/iostorInv/impl/StIvtIostorinvCpServiceImpl.java
+++ b/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/iostorInv/impl/StIvtIostorinvCpServiceImpl.java
@@ -366,6 +366,20 @@ public class StIvtIostorinvCpServiceImpl extends ServiceImpl list = iostorinvdtlCpService.list(
+ new QueryWrapper().lambda()
+ .eq(StIvtIostorinvdtlCp::getIostorinv_id, id)
+ );
+
+ list.forEach(item -> {
+ iMpsSaleOrderService.update(
+ new UpdateWrapper().lambda()
+ .set(MpsSaleOrder::getStatus, IOSEnum.ORDER_STATUS.code("生成"))
+ .eq(MpsSaleOrder::getSale_id, item.getBase_billdtl_id())
+ );
+ });
}
}
diff --git a/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/iostorInv/impl/StIvtIostorinvdtlCpServiceImpl.java b/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/iostorInv/impl/StIvtIostorinvdtlCpServiceImpl.java
index 5d7a7d9b..be88c7c0 100644
--- a/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/iostorInv/impl/StIvtIostorinvdtlCpServiceImpl.java
+++ b/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/iostorInv/impl/StIvtIostorinvdtlCpServiceImpl.java
@@ -16,11 +16,15 @@ import org.nl.wms.mps_manage.ordermanage.service.saleOrder.IMpsSaleOrderService;
import org.nl.wms.mps_manage.ordermanage.service.saleOrder.dao.MpsSaleOrder;
import org.nl.wms.storage_manage.IOSEnum;
import org.nl.wms.storage_manage.IVTEnum;
+import org.nl.wms.storage_manage.productmanage.service.iostorInv.IStIvtIostorinvCpService;
import org.nl.wms.storage_manage.productmanage.service.iostorInv.IStIvtIostorinvdisCpService;
import org.nl.wms.storage_manage.productmanage.service.iostorInv.IStIvtIostorinvdtlCpService;
+import org.nl.wms.storage_manage.productmanage.service.iostorInv.dao.StIvtIostorinvCp;
import org.nl.wms.storage_manage.productmanage.service.iostorInv.dao.StIvtIostorinvdisCp;
import org.nl.wms.storage_manage.productmanage.service.iostorInv.dao.StIvtIostorinvdtlCp;
import org.nl.wms.storage_manage.productmanage.service.iostorInv.dao.mapper.StIvtIostorinvdtlCpMapper;
+import org.nl.wms.storage_manage.productmanage.service.moreOrLess.IStIfDeliveryorderCpService;
+import org.nl.wms.storage_manage.productmanage.service.moreOrLess.dao.StIfDeliveryorderCp;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
@@ -57,6 +61,11 @@ public class StIvtIostorinvdtlCpServiceImpl extends ServiceImpl list) {
@@ -69,6 +78,8 @@ public class StIvtIostorinvdtlCpServiceImpl extends ServiceImpl0 && StringUtils.isNotEmpty(iostorinvCp_id)){
// 先删除在插入
this.remove(new QueryWrapper().eq("iostorinv_id", iostorinvCp_id));
@@ -94,6 +105,20 @@ public class StIvtIostorinvdtlCpServiceImpl extends ServiceImpl().lambda()
+ .set(StIfDeliveryorderCp::getStatus, IOSEnum.ORDER_STATUS.code("提交"))
+ .eq(StIfDeliveryorderCp::getDeliver_id,row.getSource_billdtl_id())
+ );
+ }
+
}
row.setIostorinv_id(iostorinvCp_id);
diff --git a/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/moreOrLess/dao/StIfDeliveryorderCp.java b/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/moreOrLess/dao/StIfDeliveryorderCp.java
index 14f1ffa8..18aadf74 100644
--- a/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/moreOrLess/dao/StIfDeliveryorderCp.java
+++ b/mes/hd/nladmin-system/src/main/java/org/nl/wms/storage_manage/productmanage/service/moreOrLess/dao/StIfDeliveryorderCp.java
@@ -1,5 +1,6 @@
package org.nl.wms.storage_manage.productmanage.service.moreOrLess.dao;
+import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.EqualsAndHashCode;
@@ -26,6 +27,7 @@ public class StIfDeliveryorderCp implements Serializable {
/**
* 发货单标识
*/
+ @TableId
private String deliver_id;
/**
diff --git a/mes/qd/src/components/Crud/crud.js b/mes/qd/src/components/Crud/crud.js
index afb52210..4ae96be9 100644
--- a/mes/qd/src/components/Crud/crud.js
+++ b/mes/qd/src/components/Crud/crud.js
@@ -56,7 +56,7 @@ function CRUD(options) {
reset: true
},
// 自定义一些扩展属性
- props: {},
+ props: { size: 10 },
// 在主页准备
queryOnPresenterCreated: true,
// 调试开关
@@ -97,7 +97,7 @@ function CRUD(options) {
// 页码
page: 0,
// 每页数据条数
- size: 10,
+ size: options.props.size,
// 总数据条数
total: 0
},
diff --git a/mes/qd/src/views/wms/storage_manage/product/productIn/AddDialog.vue b/mes/qd/src/views/wms/storage_manage/product/productIn/AddDialog.vue
index 2e1b4018..20970af2 100644
--- a/mes/qd/src/views/wms/storage_manage/product/productIn/AddDialog.vue
+++ b/mes/qd/src/views/wms/storage_manage/product/productIn/AddDialog.vue
@@ -219,6 +219,7 @@
@@ -368,30 +369,33 @@ export default {
this.nowrow.qty_unit_name = row.unit_name
this.nowrow.qty_unit_id = row.base_unit_id
},
- tableChanged2(row) {
- let same_mater = true
- this.form.tableData.forEach((item) => {
- if (item.base_bill_code === row.sale_code && item.base_bill_table === row.seq_no) {
- same_mater = false
+ tableChanged2(rows) {
+ rows.forEach((row) => {
+ debugger
+ let same_mater = true
+ this.form.tableData.forEach((item) => {
+ if (item.base_bill_code === row.sale_code && item.base_bill_table === row.seq_no) {
+ same_mater = false
+ }
+ })
+ if (same_mater) {
+ const data = {}
+ data.material_id = row.material_id
+ data.material_code = row.material_code
+ data.material_name = row.material_name
+ data.material_spec = row.material_spec
+ data.plan_qty = row.sale_qty
+ data.qty_unit_name = row.qty_unit_name
+ data.qty_unit_id = row.qty_unit_id
+ data.base_billdtl_id = row.sale_id
+ data.base_bill_type = row.sale_type
+ data.base_bill_code = row.sale_code
+ data.base_bill_table = row.seq_no
+ data.edit = true
+ this.form.tableData.splice(-1, 0, data)
+ this.form.total_qty = parseFloat(this.form.total_qty) + parseFloat(data.plan_qty)
}
})
- if (same_mater) {
- const data = {}
- data.material_id = row.material_id
- data.material_code = row.material_code
- data.material_name = row.material_name
- data.material_spec = row.material_spec
- data.plan_qty = row.sale_qty
- data.qty_unit_name = row.qty_unit_name
- data.qty_unit_id = row.qty_unit_id
- data.base_billdtl_id = row.sale_id
- data.base_bill_type = row.sale_type
- data.base_bill_code = row.sale_code
- data.base_bill_table = row.seq_no
- data.edit = true
- this.form.tableData.splice(-1, 0, data)
- this.form.total_qty = parseFloat(this.form.total_qty) + parseFloat(data.plan_qty)
- }
},
insertEvent(row) {
this.dtlShow = true
diff --git a/mes/qd/src/views/wms/storage_manage/product/productIn/AddDtl.vue b/mes/qd/src/views/wms/storage_manage/product/productIn/AddDtl.vue
index 18fd6447..b8905c7f 100644
--- a/mes/qd/src/views/wms/storage_manage/product/productIn/AddDtl.vue
+++ b/mes/qd/src/views/wms/storage_manage/product/productIn/AddDtl.vue
@@ -61,10 +61,12 @@
v-loading="crud.loading"
:data="crud.data"
style="width: 100%;"
+ @select="handleSelectionChange"
@selection-change="crud.selectionChangeHandler"
@current-change="clickChange"
>
-
+
+
@@ -127,6 +129,10 @@ export default {
},
opendtlParam: {
type: Object
+ },
+ isSingle: {
+ type: Boolean,
+ default: true
}
},
data() {
@@ -150,6 +156,7 @@ export default {
return true
},
open() {
+ this.query.status = '10'
this.crud.toQuery()
},
close() {
@@ -158,10 +165,31 @@ export default {
clickChange(item) {
this.tableRadio = item
},
+ handleSelectionChange(val, row) {
+ if (this.isSingle) {
+ if (val.length > 1) {
+ this.$refs.table.clearSelection()
+ this.$refs.table.toggleRowSelection(val.pop())
+ } else {
+ this.checkrow = row
+ }
+ }
+ },
submit() {
- this.$emit('update:dialogShow', false)
+ // 处理单选
+ if (this.isSingle && this.tableRadio) {
+ this.$emit('update:dialogShow', false)
+ this.$emit('tableChanged', this.tableRadio)
+ return
+ }
this.rows = this.$refs.multipleTable.selection
- this.$emit('tableChanged', this.tableRadio)
+ if (this.rows.length <= 0) {
+ this.$message('请先勾选物料')
+ return
+ }
+ this.crud.resetQuery(false)
+ this.$emit('update:dialogShow', false)
+ this.$emit('tableChanged', this.rows)
},
formterType(row) {
return this.dict.label.PCS_SAL_TYPE[row.sale_type]
diff --git a/mes/qd/src/views/wms/storage_manage/product/productIn/index.vue b/mes/qd/src/views/wms/storage_manage/product/productIn/index.vue
index 02a26a8c..6e2ac429 100644
--- a/mes/qd/src/views/wms/storage_manage/product/productIn/index.vue
+++ b/mes/qd/src/views/wms/storage_manage/product/productIn/index.vue
@@ -188,7 +188,7 @@
-
+
{{ fun(scope.row.total_qty) }}
@@ -249,7 +249,10 @@ export default {
optShow: { add: true, reset: true },
idField: 'iostorinv_id',
url: '/api/productIn',
- crudMethod: { ...productIn }
+ crudMethod: { ...productIn },
+ props: {
+ size: 10
+ }
})
},
mixins: [presenter(), header(), crud()],
diff --git a/mes/qd/src/views/wms/storage_manage/product/productOut/AddDialog.vue b/mes/qd/src/views/wms/storage_manage/product/productOut/AddDialog.vue
index 6e17b508..65349fe3 100644
--- a/mes/qd/src/views/wms/storage_manage/product/productOut/AddDialog.vue
+++ b/mes/qd/src/views/wms/storage_manage/product/productOut/AddDialog.vue
@@ -194,11 +194,13 @@
@@ -319,16 +321,32 @@ export default {
}
},
deleteRow(index, rows) {
- const material_code = rows[index].material_code
- let len = rows.length
- while (len--) {
- const obj = rows[len]
- if (material_code === obj.material_code) {
- const index = rows.indexOf(obj)
- if (index > -1) { // 移除找到的指定元素
- this.form.total_qty = parseFloat(this.form.total_qty) - parseFloat(rows[index].plan_qty)
- rows.splice(index, 1)
- this.form.detail_count = this.form.tableData.length
+ const source_bill_code = rows[index].source_bill_code
+ const base_billdtl_id = rows[index].base_billdtl_id
+ if (source_bill_code === undefined) {
+ let len = rows.length
+ while (len--) {
+ const obj = rows[len]
+ if (base_billdtl_id === obj.base_billdtl_id) {
+ const index = rows.indexOf(obj)
+ if (index > -1) { // 移除找到的指定元素
+ this.form.total_qty = parseFloat(this.form.total_qty) - parseFloat(rows[index].plan_qty)
+ rows.splice(index, 1)
+ this.form.detail_count = this.form.tableData.length
+ }
+ }
+ }
+ } else {
+ let len = rows.length
+ while (len--) {
+ const obj = rows[len]
+ if (source_bill_code === obj.source_bill_code) {
+ const index = rows.indexOf(obj)
+ if (index > -1) { // 移除找到的指定元素
+ this.form.total_qty = parseFloat(this.form.total_qty) - parseFloat(rows[index].plan_qty)
+ rows.splice(index, 1)
+ this.form.detail_count = this.form.tableData.length
+ }
}
}
}
@@ -341,58 +359,62 @@ export default {
this.nowrow.qty_unit_name = row.unit_name
this.nowrow.qty_unit_id = row.base_unit_id
},
- tableChanged2(row) {
- let same_mater = true
- this.form.tableData.forEach((item) => {
- if (item.source_bill_code === row.sale_code) {
- same_mater = false
+ tableChanged2(rows) {
+ rows.forEach((row) => {
+ let same_mater = true
+ this.form.tableData.forEach((item) => {
+ if (item.source_bill_code === row.deliver_code) {
+ same_mater = false
+ }
+ })
+ if (same_mater) {
+ const data = {}
+ data.material_id = row.material_id
+ data.material_code = row.material_code
+ data.material_name = row.material_name
+ data.material_spec = row.material_spec
+ data.plan_qty = row.delivery_qty
+ data.qty_unit_name = row.qty_unit_name
+ data.qty_unit_id = row.qty_unit_id
+ data.source_billdtl_id = row.deliver_id
+ data.source_bill_type = row.deliver_type
+ data.source_bill_code = row.deliver_code
+ data.base_billdtl_id = row.sale_id
+ data.base_bill_code = row.sale_code
+ data.base_bill_table = row.sale_seq_no
+ data.edit = true
+ this.form.tableData.splice(-1, 0, data)
+ this.form.total_qty = parseFloat(this.form.total_qty) + parseFloat(data.plan_qty)
+ this.form.detail_count = this.form.tableData.length
}
})
- if (same_mater) {
- const data = {}
- data.material_id = row.material_id
- data.material_code = row.material_code
- data.material_name = row.material_name
- data.material_spec = row.material_spec
- data.plan_qty = row.delivery_qty
- data.qty_unit_name = row.qty_unit_name
- data.qty_unit_id = row.qty_unit_id
- data.source_billdtl_id = row.deliver_id
- data.source_bill_type = row.deliver_type
- data.source_bill_code = row.deliver_code
- data.base_billdtl_id = row.sale_id
- data.base_bill_code = row.sale_code
- data.base_bill_table = row.sale_seq_no
- data.edit = true
- this.form.tableData.splice(-1, 0, data)
- this.form.total_qty = parseFloat(this.form.total_qty) + parseFloat(data.plan_qty)
- this.form.detail_count = this.form.tableData.length
- }
},
- tableChanged3(row) {
- let same_mater = true
- this.form.tableData.forEach((item) => {
- if (item.sale_id === row.sale_id) {
- same_mater = false
+ tableChanged3(rows) {
+ rows.forEach((row) => {
+ let same_mater = true
+ this.form.tableData.forEach((item) => {
+ if (item.base_billdtl_id === row.sale_id) {
+ same_mater = false
+ }
+ })
+ if (same_mater) {
+ const data = {}
+ data.material_id = row.material_id
+ data.material_code = row.material_code
+ data.material_name = row.material_name
+ data.material_spec = row.material_spec
+ data.plan_qty = row.canuse_qty
+ data.qty_unit_name = row.unit_name
+ data.qty_unit_id = row.measure_unit_id
+ data.base_billdtl_id = row.sale_id
+ data.base_bill_code = row.sale_code
+ data.base_bill_table = row.seq_no
+ data.edit = true
+ this.form.tableData.splice(-1, 0, data)
+ this.form.total_qty = parseFloat(this.form.total_qty) + parseFloat(data.plan_qty)
+ this.form.detail_count = this.form.tableData.length
}
})
- if (same_mater) {
- const data = {}
- data.material_id = row.material_id
- data.material_code = row.material_code
- data.material_name = row.material_name
- data.material_spec = row.material_spec
- data.plan_qty = row.canuse_qty
- data.qty_unit_name = row.unit_name
- data.qty_unit_id = row.measure_unit_id
- data.base_billdtl_id = row.sale_id
- data.base_bill_code = row.sale_code
- data.base_bill_table = row.seq_no
- data.edit = true
- this.form.tableData.splice(-1, 0, data)
- this.form.total_qty = parseFloat(this.form.total_qty) + parseFloat(data.plan_qty)
- this.form.detail_count = this.form.tableData.length
- }
},
insertEvent(row) {
this.dtlShow = true
diff --git a/mes/qd/src/views/wms/storage_manage/product/productOut/AddDtl.vue b/mes/qd/src/views/wms/storage_manage/product/productOut/AddDtl.vue
index 5bdc47a1..8c6b0f6e 100644
--- a/mes/qd/src/views/wms/storage_manage/product/productOut/AddDtl.vue
+++ b/mes/qd/src/views/wms/storage_manage/product/productOut/AddDtl.vue
@@ -72,7 +72,8 @@
:header-cell-style="{background:'#f5f7fa',color:'#606266'}"
@current-change="clickChange"
>
-
+
+
@@ -137,6 +138,10 @@ export default {
},
storId: {
type: String
+ },
+ isSingle: {
+ type: Boolean,
+ default: true
}
},
data() {
@@ -172,14 +177,27 @@ export default {
},
open() {
this.crud.query.mater_type = this.opendtlParam
+ this.query.status = '10'
+ this.crud.toQuery()
},
clickChange(item) {
this.tableRadio = item
},
submit() {
- this.$emit('update:dialogShow', false)
+ // 处理单选
+ if (this.isSingle && this.tableRadio) {
+ this.$emit('update:dialogShow', false)
+ this.$emit('tableChanged', this.tableRadio)
+ return
+ }
this.rows = this.$refs.multipleTable.selection
- this.$emit('tableChanged', this.tableRadio)
+ if (this.rows.length <= 0) {
+ this.$message('请先勾选物料')
+ return
+ }
+ this.crud.resetQuery(false)
+ this.$emit('update:dialogShow', false)
+ this.$emit('tableChanged', this.rows)
},
formatStatus(row, column) {
return this.dict.label.PCS_DELI_STATUS[row.status]
diff --git a/mes/qd/src/views/wms/storage_manage/product/productOut/AddIvt.vue b/mes/qd/src/views/wms/storage_manage/product/productOut/AddIvt.vue
index 91a3f174..38d3c27e 100644
--- a/mes/qd/src/views/wms/storage_manage/product/productOut/AddIvt.vue
+++ b/mes/qd/src/views/wms/storage_manage/product/productOut/AddIvt.vue
@@ -81,7 +81,8 @@
:header-cell-style="{background:'#f5f7fa',color:'#606266'}"
@current-change="clickChange"
>
-
+
+
@@ -148,6 +149,10 @@ export default {
},
storId: {
type: String
+ },
+ isSingle: {
+ type: Boolean,
+ default: true
}
},
data() {
@@ -183,14 +188,26 @@ export default {
},
open() {
this.crud.query.lock_type = '0'
+ this.crud.toQuery()
},
clickChange(item) {
this.tableRadio = item
},
submit() {
- this.$emit('update:dialogShow', false)
+ // 处理单选
+ if (this.isSingle && this.tableRadio) {
+ this.$emit('update:dialogShow', false)
+ this.$emit('tableChanged', this.tableRadio)
+ return
+ }
this.rows = this.$refs.multipleTable.selection
- this.$emit('tableChanged', this.tableRadio)
+ if (this.rows.length <= 0) {
+ this.$message('请先勾选物料')
+ return
+ }
+ this.crud.resetQuery(false)
+ this.$emit('update:dialogShow', false)
+ this.$emit('tableChanged', this.rows)
}
}
}