Merge pull request '修改预订单出库' (#559) from dev into main
Reviewed-on: #559
This commit is contained in:
commit
5a00d7a858
@ -377,7 +377,6 @@ class BeforehandOrderLogic extends BaseLogic
|
||||
public static function createOutboundOrder(array $params): bool
|
||||
{
|
||||
$warehouse_id = $params['warehouse_id'];
|
||||
$store_id = $params['store_id'];
|
||||
$admin_id = $params['admin_id'];
|
||||
$delivery_time = $params['delivery_time'];
|
||||
$mark = $params['remark'] ?? '';
|
||||
@ -391,6 +390,7 @@ class BeforehandOrderLogic extends BaseLogic
|
||||
if ($order['outbound_id'] > 0) {
|
||||
throw new BusinessException('该订单已创建出库单');
|
||||
}
|
||||
$store_id = $order['store_id'];
|
||||
$info = BeforehandOrderCartInfo::where('bhoid', $params['bhoid'])->select()->toArray();
|
||||
$product_column = array_column($info, 'product_id');
|
||||
$storege_arr=WarehouseProductStorege::where('warehouse_id', $params['warehouse_id'])->where('product_id','in',$product_column)->select();
|
||||
|
@ -393,7 +393,7 @@ class BeforehandOrderCartInfoLogic extends BaseLogic
|
||||
throw new BusinessException('请选择入库仓库');
|
||||
}
|
||||
$purchaseProductOffer = PurchaseProductOffer::where('id', $params['id'])->find();
|
||||
if (empty($purchaseProductOffer) || $params['warehouse_num'] == 0) {
|
||||
if (empty($purchaseProductOffer) || $params['warehouse_num'] == 0 || empty($purchaseProductOffer['total_price'])) {
|
||||
throw new BusinessException('请先设置采购信息再入库');
|
||||
}
|
||||
if ($purchaseProductOffer['is_storage'] == 1) {
|
||||
|
@ -215,6 +215,11 @@ class PurchaseProductOfferLogic extends BaseLogic
|
||||
$params['manufacture'] = !empty($params['manufacture']) ? strtotime($params['manufacture']) : '';
|
||||
$params['expiration_date'] = !empty($params['expiration_date']) ? strtotime($params['expiration_date']) : '';
|
||||
$offer = PurchaseProductOffer::where(['id' => $params['id']])->find();
|
||||
$lastPrice = PurchaseProductOffer::where(['product_id' => $offer['product_id']])->where('status', 1)->order('id desc')->value('price');
|
||||
$currentPrice = bcdiv($params['total_price'], $params['buyer_nums'], 2);
|
||||
if (!empty($lastPrice) && ($currentPrice > $lastPrice * 3 || $currentPrice < $lastPrice / 3)) {
|
||||
throw new BusinessException('价格异常,请重新输入');
|
||||
}
|
||||
// $uid=Admin::where('id',$params['admin_id'])->value('uid');
|
||||
// if($params['admin_id']!=1){
|
||||
// if($offer['buyer_id']!=$uid){
|
||||
|
Loading…
x
Reference in New Issue
Block a user