调整商品调拨单
This commit is contained in:
parent
5d74bf2f41
commit
5f543566cb
@ -91,5 +91,17 @@ class InventoryTransferOrderController extends BaseAdminController
|
|||||||
return $this->data($result);
|
return $this->data($result);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @notes 审核商品调拨订单
|
||||||
|
* @author admin
|
||||||
|
* @date 2025/01/24 09:59
|
||||||
|
*/
|
||||||
|
public function audit()
|
||||||
|
{
|
||||||
|
$params = (new InventoryTransferOrderValidate())->post()->goCheck('delete');
|
||||||
|
$order = InventoryTransferOrderLogic::detail($params);
|
||||||
|
InventoryTransferOrderLogic::audit($order);
|
||||||
|
return $this->success('删除成功', [], 1, 1);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -33,7 +33,7 @@ class InventoryTransferLists extends BaseAdminDataLists implements ListsSearchIn
|
|||||||
public function setSearch(): array
|
public function setSearch(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'=' => ['type'],
|
'=' => ['type', 'product_id'],
|
||||||
'between_time' => 'create_time'
|
'between_time' => 'create_time'
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
@ -70,7 +70,11 @@ class InventoryTransferLists extends BaseAdminDataLists implements ListsSearchIn
|
|||||||
return [];
|
return [];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return InventoryTransfer::where($this->searchWhere)
|
$query = InventoryTransfer::where($this->searchWhere);
|
||||||
|
if (!empty($this->params['warehouse_id'])) {
|
||||||
|
$query->whereRaw("(one_type=2 and one_id={$this->params['warehouse_id']}) or (two_type=2 and two_id={$this->params['warehouse_id']})");
|
||||||
|
}
|
||||||
|
return $query
|
||||||
->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'])
|
->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)
|
->limit($this->limitOffset, $this->limitLength)
|
||||||
->order(['id' => 'desc'])
|
->order(['id' => 'desc'])
|
||||||
@ -117,7 +121,11 @@ class InventoryTransferLists extends BaseAdminDataLists implements ListsSearchIn
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
return InventoryTransfer::where($this->searchWhere)->count();
|
$query = InventoryTransfer::where($this->searchWhere);
|
||||||
|
if (!empty($this->params['warehouse_id'])) {
|
||||||
|
$query->whereRaw("(one_type=2 and one_id={$this->params['warehouse_id']}) or (two_type=2 and two_id={$this->params['warehouse_id']})");
|
||||||
|
}
|
||||||
|
return $query->count();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ class InventoryTransferOrderLists extends BaseAdminDataLists implements ListsSea
|
|||||||
public function lists(): array
|
public function lists(): array
|
||||||
{
|
{
|
||||||
return InventoryTransferOrder::where($this->searchWhere)
|
return InventoryTransferOrder::where($this->searchWhere)
|
||||||
->field(['id', 'order_id', 'one_id', 'one_type', 'two_id', 'two_type', 'types', 'total_nums', 'total_price','mark'])
|
->field(['id', 'order_id', 'one_id', 'one_type', 'two_id', 'two_type', 'types', 'total_nums', 'total_price','mark', 'status'])
|
||||||
->limit($this->limitOffset, $this->limitLength)
|
->limit($this->limitOffset, $this->limitLength)
|
||||||
->order(['id' => 'desc'])
|
->order(['id' => 'desc'])
|
||||||
->select()->each(function ($item) {
|
->select()->each(function ($item) {
|
||||||
|
@ -84,60 +84,16 @@ class InventoryTransferOrderLogic extends BaseLogic
|
|||||||
'two_id' => $params['two_id'],
|
'two_id' => $params['two_id'],
|
||||||
'types' => $types,
|
'types' => $types,
|
||||||
'mark' => $params['mark']??'',
|
'mark' => $params['mark']??'',
|
||||||
|
'status' => ($params['two_type'] == 2 && $types == 0) ? 0 : 1,
|
||||||
]);
|
]);
|
||||||
foreach ($insert as $k => $v) {
|
foreach ($insert as $k => $v) {
|
||||||
$insert[$k]['oid'] = $order['id'];
|
$insert[$k]['oid'] = $order['id'];
|
||||||
}
|
}
|
||||||
InventoryTransfer::insertAll($insert);
|
InventoryTransfer::insertAll($insert);
|
||||||
if($types==1){
|
if($types==0 && $params['two_type']==1){
|
||||||
Db::commit();
|
self::audit($params, $insert, $admin_id);
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
foreach ($insert as $v) {
|
|
||||||
if($params['one_type']==1){
|
|
||||||
$find=StoreBranchProduct::where('product_id', $v['product_id'])->where('store_id', $params['one_id'])->find();
|
|
||||||
$find->save(['stock' =>bcsub( $find['stock'],$v['nums'],2)]);
|
|
||||||
SqlChannelLog('StoreBranchProduct', $find['id'], $v['nums'], -1, Request()->url(),$admin_id);
|
|
||||||
} elseif ($params['one_type'] == 2) {
|
|
||||||
$find=WarehouseProductStorege::where('product_id', $v['product_id'])->where('warehouse_id', $params['one_id'])->find();
|
|
||||||
$find->save(['nums' =>bcsub( $find['nums'],$v['nums'],2)]);
|
|
||||||
SqlChannelLog('WarehouseProductStorege', $find['id'], $v['nums'], -1, Request()->url(),$admin_id);
|
|
||||||
}
|
|
||||||
if($params['two_type']==1){
|
|
||||||
$find=StoreBranchProduct::where('product_id', $v['product_id'])->where('store_id', $params['two_id'])->find();
|
|
||||||
if (empty($find)) {
|
|
||||||
$storeProduct = StoreProduct::field('top_cate_id,two_cate_id,cate_id,store_name,image,price,vip_price,cost,purchase,keyword,bar_code,store_info,rose,product_type,unit,batch,store_batch,label_id,is_lack,manufacturer_information')->where('id', $v['product_id'])->find()->toArray();
|
|
||||||
$find = new StoreBranchProduct();
|
|
||||||
$find->product_id = $v['product_id'];
|
|
||||||
$find->store_id = $params['two_id'];
|
|
||||||
$find->stock = $v['nums'];
|
|
||||||
$find->setAttrs($storeProduct);
|
|
||||||
$find->save();
|
|
||||||
} else {
|
|
||||||
$find->save(['stock' =>bcadd( $find['stock'],$v['nums'],2)]);
|
|
||||||
}
|
|
||||||
SqlChannelLog('StoreBranchProduct', $find['id'], $v['nums'], 1, Request()->url(),$admin_id);
|
|
||||||
} elseif ($params['two_type'] == 2) {
|
|
||||||
$find=WarehouseProductStorege::where('product_id', $v['product_id'])->where('warehouse_id', $params['two_id'])->find();
|
|
||||||
if (empty($find)) {
|
|
||||||
$find = new WarehouseProductStorege();
|
|
||||||
$find->warehouse_id = $params['two_id'];
|
|
||||||
$find->product_id = $v['product_id'];
|
|
||||||
$find->nums = $v['nums'];
|
|
||||||
$find->save();
|
|
||||||
} else {
|
|
||||||
$find->save(['nums' =>bcadd( $find['nums'],$v['nums'],2)]);
|
|
||||||
}
|
|
||||||
SqlChannelLog('WarehouseProductStorege', $find['id'], $v['nums'], 1, Request()->url(),$admin_id);
|
|
||||||
}
|
|
||||||
|
|
||||||
$productSourceLinkInfoLogic = new ProductSourceLinkInfoLogic();
|
|
||||||
$productSourceLinkInfoLogic->setInfo([
|
|
||||||
'oid' => $v['oid'],
|
|
||||||
'product_id' => $v['product_id'],
|
|
||||||
]);
|
|
||||||
$productSourceLinkInfoLogic->transfer();
|
|
||||||
}
|
|
||||||
Db::commit();
|
Db::commit();
|
||||||
return true;
|
return true;
|
||||||
} catch (\Throwable $e) {
|
} catch (\Throwable $e) {
|
||||||
@ -146,6 +102,59 @@ class InventoryTransferOrderLogic extends BaseLogic
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static function audit($order = null, $products = null, $admin_id = 0)
|
||||||
|
{
|
||||||
|
if (empty($products)) {
|
||||||
|
$products = InventoryTransfer::where('oid', $order['id'])->select()->toArray();
|
||||||
|
}
|
||||||
|
foreach ($products as $v) {
|
||||||
|
if($order['one_type']==1){
|
||||||
|
$find=StoreBranchProduct::where('product_id', $v['product_id'])->where('store_id', $order['one_id'])->find();
|
||||||
|
$find->save(['stock' =>bcsub( $find['stock'],$v['nums'],2)]);
|
||||||
|
SqlChannelLog('StoreBranchProduct', $find['id'], $v['nums'], -1, Request()->url(),$admin_id);
|
||||||
|
} elseif ($order['one_type'] == 2) {
|
||||||
|
$find=WarehouseProductStorege::where('product_id', $v['product_id'])->where('warehouse_id', $order['one_id'])->find();
|
||||||
|
$find->save(['nums' =>bcsub( $find['nums'],$v['nums'],2)]);
|
||||||
|
SqlChannelLog('WarehouseProductStorege', $find['id'], $v['nums'], -1, Request()->url(),$admin_id);
|
||||||
|
}
|
||||||
|
if($order['two_type']==1){
|
||||||
|
$find=StoreBranchProduct::where('product_id', $v['product_id'])->where('store_id', $order['two_id'])->find();
|
||||||
|
if (empty($find)) {
|
||||||
|
$storeProduct = StoreProduct::field('top_cate_id,two_cate_id,cate_id,store_name,image,price,vip_price,cost,purchase,keyword,bar_code,store_info,rose,product_type,unit,batch,store_batch,label_id,is_lack,manufacturer_information')->where('id', $v['product_id'])->find()->toArray();
|
||||||
|
$find = new StoreBranchProduct();
|
||||||
|
$find->product_id = $v['product_id'];
|
||||||
|
$find->store_id = $order['two_id'];
|
||||||
|
$find->stock = $v['nums'];
|
||||||
|
$find->setAttrs($storeProduct);
|
||||||
|
$find->save();
|
||||||
|
} else {
|
||||||
|
$find->save(['stock' =>bcadd( $find['stock'],$v['nums'],2)]);
|
||||||
|
}
|
||||||
|
SqlChannelLog('StoreBranchProduct', $find['id'], $v['nums'], 1, Request()->url(),$admin_id);
|
||||||
|
} elseif ($order['two_type'] == 2) {
|
||||||
|
$find=WarehouseProductStorege::where('product_id', $v['product_id'])->where('warehouse_id', $order['two_id'])->find();
|
||||||
|
if (empty($find)) {
|
||||||
|
$find = new WarehouseProductStorege();
|
||||||
|
$find->warehouse_id = $order['two_id'];
|
||||||
|
$find->product_id = $v['product_id'];
|
||||||
|
$find->nums = $v['nums'];
|
||||||
|
$find->save();
|
||||||
|
} else {
|
||||||
|
$find->save(['nums' =>bcadd( $find['nums'],$v['nums'],2)]);
|
||||||
|
}
|
||||||
|
SqlChannelLog('WarehouseProductStorege', $find['id'], $v['nums'], 1, Request()->url(),$admin_id);
|
||||||
|
}
|
||||||
|
InventoryTransferOrder::where('id', $order['id'])->update(['status' => 1]);
|
||||||
|
|
||||||
|
$productSourceLinkInfoLogic = new ProductSourceLinkInfoLogic();
|
||||||
|
$productSourceLinkInfoLogic->setInfo([
|
||||||
|
'oid' => $v['oid'],
|
||||||
|
'product_id' => $v['product_id'],
|
||||||
|
]);
|
||||||
|
$productSourceLinkInfoLogic->transfer();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @notes 编辑商品调拨订单
|
* @notes 编辑商品调拨订单
|
||||||
|
Loading…
x
Reference in New Issue
Block a user