commit
bb5f16e971
@ -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);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -106,6 +106,7 @@ class WarehouseOrderController extends BaseAdminController
|
|||||||
'admin_id' => $this->adminId,
|
'admin_id' => $this->adminId,
|
||||||
'type' => $type,
|
'type' => $type,
|
||||||
'order_type' => 0,
|
'order_type' => 0,
|
||||||
|
'code' => $code,
|
||||||
];
|
];
|
||||||
$storeProduct = StoreProduct::where('id', $arr['id'])->find();
|
$storeProduct = StoreProduct::where('id', $arr['id'])->find();
|
||||||
$data['total_price'] = bcmul($arr['stock'], $storeProduct['purchase'], 2);
|
$data['total_price'] = bcmul($arr['stock'], $storeProduct['purchase'], 2);
|
||||||
|
@ -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 编辑商品调拨订单
|
||||||
|
@ -55,7 +55,7 @@ class WarehouseProductLogic extends BaseLogic
|
|||||||
$total_price = bcmul($after_nums, $storeProduct['purchase'], 2);
|
$total_price = bcmul($after_nums, $storeProduct['purchase'], 2);
|
||||||
}
|
}
|
||||||
WarehouseProductStorege::update(['nums' => $after_nums, 'total_price' => $total_price], ['id' => $storege['id']]);
|
WarehouseProductStorege::update(['nums' => $after_nums, 'total_price' => $total_price], ['id' => $storege['id']]);
|
||||||
SqlChannelLog('WarehouseProductStorege', $storege['id'], $after_nums, 1, Request()->url(),$admin_id);
|
SqlChannelLog('WarehouseProductStorege', $storege['id'], $params['nums'], 1, Request()->url(),$admin_id);
|
||||||
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -149,7 +149,7 @@ class WarehouseProductLogic extends BaseLogic
|
|||||||
$after_nums = bcsub($storege['nums'], $params['nums']);
|
$after_nums = bcsub($storege['nums'], $params['nums']);
|
||||||
$total_price = bcmul($after_nums, $params['purchase'], 2);
|
$total_price = bcmul($after_nums, $params['purchase'], 2);
|
||||||
WarehouseProductStorege::update(['nums' => bcsub($storege['nums'], $params['nums']), 'total_price' => $total_price], ['id' => $storege['id']]);
|
WarehouseProductStorege::update(['nums' => bcsub($storege['nums'], $params['nums']), 'total_price' => $total_price], ['id' => $storege['id']]);
|
||||||
SqlChannelLog('WarehouseProductStorege', $storege['id'], bcsub($storege['nums'], $params['nums']), -1, Request()->url(),$admin_id);
|
SqlChannelLog('WarehouseProductStorege', $storege['id'], $params['nums'], -1, Request()->url(),$admin_id);
|
||||||
} else {
|
} else {
|
||||||
$data = [
|
$data = [
|
||||||
'warehouse_id' => $params['warehouse_id'],
|
'warehouse_id' => $params['warehouse_id'],
|
||||||
@ -158,7 +158,7 @@ class WarehouseProductLogic extends BaseLogic
|
|||||||
'total_price' => 0
|
'total_price' => 0
|
||||||
];
|
];
|
||||||
$storege = WarehouseProductStorege::create($data);
|
$storege = WarehouseProductStorege::create($data);
|
||||||
SqlChannelLog('WarehouseProductStorege', $storege->id, -$params['nums'], -1, Request()->url(),$admin_id);
|
SqlChannelLog('WarehouseProductStorege', $storege->id, $params['nums'], -1, Request()->url(),$admin_id);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$storege['nums'] = 0;
|
$storege['nums'] = 0;
|
||||||
|
@ -125,6 +125,9 @@ class ProductLists extends BaseApiDataLists implements ListsSearchInterface, Lis
|
|||||||
if ($off_activity == 0 && $user_ship == 5 && $item['top_cate_id'] == 15189) {
|
if ($off_activity == 0 && $user_ship == 5 && $item['top_cate_id'] == 15189) {
|
||||||
$item['price'] = $item['cost'];
|
$item['price'] = $item['cost'];
|
||||||
}
|
}
|
||||||
|
if ($user_ship == 4) {
|
||||||
|
$item['price'] = $item['cost'];
|
||||||
|
}
|
||||||
if($item['is_lack']==1){
|
if($item['is_lack']==1){
|
||||||
$tag='缺货';
|
$tag='缺货';
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user