mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
feat: #100000 修改
This commit is contained in:
parent
ca3a032058
commit
cc54025b9b
@ -7,6 +7,11 @@ use Carbon\Carbon;
|
||||
|
||||
class BusinessOrderFilter extends Filters
|
||||
{
|
||||
protected function ids($value)
|
||||
{
|
||||
return $this->builder->whereIn('id', $value);
|
||||
}
|
||||
|
||||
protected function participateNo($value)
|
||||
{
|
||||
return $this->builder->where('participate_no', trim($value));
|
||||
|
||||
@ -21,6 +21,7 @@ class BusinessOrder extends Model
|
||||
'confirm_at_end',
|
||||
'goods_sku_num',
|
||||
'print_status',
|
||||
'ids',
|
||||
];
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@ -9,14 +9,6 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
||||
<!-- <el-form-item label="活动名称:">
|
||||
<el-select v-model="form.activity_no" placeholder="活动名称">
|
||||
<el-option v-for="item in groupActivity" :key="item.activity_no" :label="item.activity_title"
|
||||
:value="item.activity_no">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item> -->
|
||||
|
||||
<el-form-item label="发货状态:">
|
||||
<el-select v-model="form.shipping_status" placeholder="发货状态">
|
||||
<el-option value="" label="全部"></el-option>
|
||||
@ -50,13 +42,6 @@
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
|
||||
<!-- <el-form-item label="帮卖团跟团号:">
|
||||
<el-input v-model="form.participate_no" placeholder="帮卖团跟团号"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="自卖团跟团号:">
|
||||
<el-input v-model="form.supply_participate_no" placeholder="自卖团跟团号"></el-input>
|
||||
</el-form-item> -->
|
||||
|
||||
<el-form-item label="商品数量:">
|
||||
<el-select v-model="form.goods_sku_num" placeholder="商品数量">
|
||||
<el-option value="" label="全部"></el-option>
|
||||
@ -171,6 +156,7 @@ export default {
|
||||
print_status: "0",
|
||||
external_sku_ids: [],
|
||||
confirm_at: [],
|
||||
ids: [],
|
||||
},
|
||||
dialogVisible: false,
|
||||
loading: true,
|
||||
@ -210,7 +196,6 @@ export default {
|
||||
timeoutnum: null, //断开 重连倒计时
|
||||
defaultPrinter: null,
|
||||
taskIDArray: [],
|
||||
requestIDGetGlobalConfig: '',
|
||||
};
|
||||
},
|
||||
created() {
|
||||
@ -297,6 +282,7 @@ export default {
|
||||
print_status: 0,
|
||||
external_sku_ids: [],
|
||||
confirm_at: this.confirmAt,
|
||||
multipleSelectionIds: [],
|
||||
};
|
||||
this.getPlatOrderList();
|
||||
},
|
||||
@ -338,8 +324,12 @@ export default {
|
||||
this.doPrint();
|
||||
})
|
||||
},
|
||||
handleSelectionChange() {
|
||||
|
||||
handleSelectionChange(val) {
|
||||
let ids = [];
|
||||
val.forEach((item) => {
|
||||
ids.push(item.id);
|
||||
})
|
||||
this.form.ids = ids;
|
||||
},
|
||||
initWebSocket() {
|
||||
//初始化weosocket
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user