feat(inventory_transfer): 添加订单号搜索功能并更新列表显示
- 在库存调拨列表中添加订单号搜索功能 - 在列表中增加订单号字段显示 - 优化库存调拨数据查询逻辑,支持按订单号筛选
This commit is contained in:
parent
f8d11cc787
commit
9a3b4646fe
@ -10,6 +10,7 @@ use app\common\model\store_product\StoreProduct;
|
||||
use app\common\model\system_store\SystemStore;
|
||||
use app\common\model\warehouse\Warehouse;
|
||||
use app\common\lists\ListsExcelInterface;
|
||||
use app\common\model\inventory_transfer_order\InventoryTransferOrder;
|
||||
|
||||
/**
|
||||
* 商品调拨列表
|
||||
@ -59,23 +60,23 @@ class InventoryTransferLists extends BaseAdminDataLists implements ListsSearchIn
|
||||
return [];
|
||||
}
|
||||
}
|
||||
if ($this->request->get('bar_code')) {
|
||||
$this->bar_code = $this->request->get('bar_code');
|
||||
$ids = StoreProduct::where('bar_code', 'like', '%' . $this->bar_code . '%')->column('id');
|
||||
if ($this->request->get('order_id')) {
|
||||
$this->store_name = $this->request->get('order_id');
|
||||
$ids = InventoryTransferOrder::where('order_id', 'like', $this->request->get('order_id') . '%')->column('id');
|
||||
if ($ids) {
|
||||
$this->searchWhere[] = ['product_id', 'in', $ids];
|
||||
$this->searchWhere[] = ['oid', 'in', $ids];
|
||||
$this->ids = $ids;
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
return InventoryTransfer::where($this->searchWhere)
|
||||
->field(['id', 'product_id', 'nums', 'one_before_nums', 'one_after_nums','two_before_nums','two_after_nums', 'one_type','two_type', 'one_id', 'two_id', 'create_time'])
|
||||
->field(['id','oid', 'product_id', 'nums', 'one_before_nums', 'one_after_nums','two_before_nums','two_after_nums', 'one_type','two_type', 'one_id', 'two_id', 'create_time'])
|
||||
->limit($this->limitOffset, $this->limitLength)
|
||||
->order(['id' => 'desc'])
|
||||
->select()->each(function($item){
|
||||
$find= StoreProduct::where('id',$item->product_id)->withTrashed()->field('store_name,price')->find();
|
||||
$item->order_id= InventoryTransferOrder::where('id',$item->oid)->value('order_id');
|
||||
$item->store_name=$find['store_name'];
|
||||
$item->price=$find['price'];
|
||||
$item->total_price=bcmul($find['price'],$item['nums'],2);
|
||||
@ -141,6 +142,7 @@ class InventoryTransferLists extends BaseAdminDataLists implements ListsSearchIn
|
||||
public function setExcelFields(): array
|
||||
{
|
||||
$data = [
|
||||
'order_id' => '订单号',
|
||||
'store_name' => '商品名称',
|
||||
'one_before_nums' => '数量',
|
||||
'one_name' => '转出方',
|
||||
|
Loading…
x
Reference in New Issue
Block a user