feat(purchase): 添加采购产品价格计算功能

- 在采购产品报价逻辑中增加价格计算功能
- 根据产品类别和预设的加价比例计算采购价、成本价和销售价
- 将计算结果保存到数据库中
This commit is contained in:
mkm 2024-10-19 17:15:51 +08:00
parent e924954a9a
commit 0668c84279
12 changed files with 873 additions and 25 deletions

View File

@ -0,0 +1,104 @@
<?php
namespace app\admin\controller\store_product_price;
use app\admin\controller\BaseAdminController;
use app\admin\lists\store_product_price\StoreProductPriceLists;
use app\admin\logic\store_product_price\StoreProductPriceLogic;
use app\admin\validate\store_product_price\StoreProductPriceValidate;
/**
* 商品价格更改控制器
* Class StoreProductPriceController
* @package app\admin\controller\store_product_price
*/
class StoreProductPriceController extends BaseAdminController
{
/**
* @notes 获取商品价格更改列表
* @return \think\response\Json
* @author admin
* @date 2024/10/19 11:31
*/
public function lists()
{
return $this->dataLists(new StoreProductPriceLists());
}
/**
* @notes 添加商品价格更改
* @return \think\response\Json
* @author admin
* @date 2024/10/19 11:31
*/
public function add()
{
$params = (new StoreProductPriceValidate())->post()->goCheck('add');
$result = StoreProductPriceLogic::add($params);
if (true === $result) {
return $this->success('添加成功', [], 1, 1);
}
return $this->fail(StoreProductPriceLogic::getError());
}
/**
* @notes 编辑商品价格更改
* @return \think\response\Json
* @author admin
* @date 2024/10/19 11:31
*/
public function edit()
{
$params = $this->request->post();
$result = StoreProductPriceLogic::edit($params);
return $this->success('设置成功', [], 1, 1);
}
/**
* @notes 确认改价
* @return \think\response\Json
*/
public function enterPrice()
{
$params = $this->request->post();
$result = StoreProductPriceLogic::enterPrice($params);
return $this->success('设置成功', [], 1, 1);
}
/**
* @notes 删除商品价格更改
* @return \think\response\Json
* @author admin
* @date 2024/10/19 11:31
*/
public function delete()
{
$params = (new StoreProductPriceValidate())->post()->goCheck('delete');
StoreProductPriceLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取商品价格更改详情
* @return \think\response\Json
* @author admin
* @date 2024/10/19 11:31
*/
public function detail()
{
$params = (new StoreProductPriceValidate())->goCheck('detail');
$result = StoreProductPriceLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,93 @@
<?php
namespace app\admin\controller\warehouse_product_return;
use app\admin\controller\BaseAdminController;
use app\admin\lists\warehouse_product_return\WarehouseProductReturnLists;
use app\admin\logic\warehouse_product_return\WarehouseProductReturnLogic;
use app\admin\validate\warehouse_product_return\WarehouseProductReturnValidate;
/**
* 仓库商品退货处理控制器
* Class WarehouseProductReturnController
* @package app\admin\controller\warehouse_product_return
*/
class WarehouseProductReturnController extends BaseAdminController
{
/**
* @notes 获取仓库商品退货处理列表
* @return \think\response\Json
* @author admin
* @date 2024/10/19 16:02
*/
public function lists()
{
return $this->dataLists(new WarehouseProductReturnLists());
}
/**
* @notes 添加仓库商品退货处理
* @return \think\response\Json
* @author admin
* @date 2024/10/19 16:02
*/
public function add()
{
$params = $this->request->post();
$params['admin_id']=$this->adminId;
$result = WarehouseProductReturnLogic::add($params);
return $this->success('退回成功', [], 1, 1);
}
/**
* @notes 编辑仓库商品退货处理
* @return \think\response\Json
* @author admin
* @date 2024/10/19 16:02
*/
public function edit()
{
$params = (new WarehouseProductReturnValidate())->post()->goCheck('edit');
$result = WarehouseProductReturnLogic::edit($params);
if (true === $result) {
return $this->success('编辑成功', [], 1, 1);
}
return $this->fail(WarehouseProductReturnLogic::getError());
}
/**
* @notes 删除仓库商品退货处理
* @return \think\response\Json
* @author admin
* @date 2024/10/19 16:02
*/
public function delete()
{
$params = (new WarehouseProductReturnValidate())->post()->goCheck('delete');
WarehouseProductReturnLogic::delete($params);
return $this->success('删除成功', [], 1, 1);
}
/**
* @notes 获取仓库商品退货处理详情
* @return \think\response\Json
* @author admin
* @date 2024/10/19 16:02
*/
public function detail()
{
$params = (new WarehouseProductReturnValidate())->goCheck('detail');
$result = WarehouseProductReturnLogic::detail($params);
return $this->data($result);
}
}

View File

@ -0,0 +1,75 @@
<?php
namespace app\admin\lists\store_product_price;
use app\admin\lists\BaseAdminDataLists;
use app\common\model\store_product_price\StoreProductPrice;
use app\common\lists\ListsSearchInterface;
use app\common\model\store_product\StoreProduct;
/**
* 商品价格更改列表
* Class StoreProductPriceLists
* @package app\admin\listsstore_product_price
*/
class StoreProductPriceLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author admin
* @date 2024/10/19 11:31
*/
public function setSearch(): array
{
return [
'=' => ['status'],
];
}
/**
* @notes 获取商品价格更改列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author admin
* @date 2024/10/19 11:31
*/
public function lists(): array
{
$store_name=$this->request->get('store_name');
if($store_name){
$store_id=StoreProduct::where('store_name','like','%'.$store_name.'%')->column('id');
$this->searchWhere[]=['product_id','in',$store_id];
}
return StoreProductPrice::where($this->searchWhere)
->field(['id','bhoid','offer_id', 'product_id', 'purchase_price', 'purchase_lv', 'purchase', 'cost_lv', 'cost', 'price_lv', 'price', 'status'])
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function($item){
$find = StoreProduct::where('id', $item['product_id'])->field('image,store_name')->find();
$item['store_name']=$find['store_name'];
$item['image']=$find['image'];
$item['status_name']=$item['status']==0?"未设置":"已设置";
})
->toArray();
}
/**
* @notes 获取商品价格更改数量
* @return int
* @author admin
* @date 2024/10/19 11:31
*/
public function count(): int
{
return StoreProductPrice::where($this->searchWhere)->count();
}
}

View File

@ -0,0 +1,71 @@
<?php
namespace app\admin\lists\warehouse_product_return;
use app\admin\lists\BaseAdminDataLists;
use app\common\model\warehouse_product_return\WarehouseProductReturn;
use app\common\lists\ListsSearchInterface;
use app\common\model\store_product\StoreProduct;
use app\common\model\store_product_unit\StoreProductUnit;
/**
* 仓库商品退货处理列表
* Class WarehouseProductReturnLists
* @package app\admin\listswarehouse_product_return
*/
class WarehouseProductReturnLists extends BaseAdminDataLists implements ListsSearchInterface
{
/**
* @notes 设置搜索条件
* @return \string[][]
* @author admin
* @date 2024/10/19 16:02
*/
public function setSearch(): array
{
return [
'=' => ['warehouse_id', 'supplier_id', 'store_id', 'product_id', 'return_type'],
];
}
/**
* @notes 获取仓库商品退货处理列表
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
* @author admin
* @date 2024/10/19 16:02
*/
public function lists(): array
{
return WarehouseProductReturn::where($this->searchWhere)
->field(['id', 'warehouse_id', 'supplier_id', 'store_id', 'product_id', 'unit', 'financial_pm', 'admin_id', 'nums', 'mark', 'price', 'total_price', 'return_type', 'status'])
->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc'])
->select()->each(function ($item){
$find = StoreProduct::where('id', $item->product_id)->field('unit,image,store_name')->find();
$item['unit_name']=StoreProductUnit::where('id',$find['unit'])->value('name');
$item['store_name']=$find['store_name'];
$item['image']=$find['image'];
})
->toArray();
}
/**
* @notes 获取仓库商品退货处理数量
* @return int
* @author admin
* @date 2024/10/19 16:02
*/
public function count(): int
{
return WarehouseProductReturn::where($this->searchWhere)->count();
}
}

View File

@ -334,6 +334,7 @@ class BeforehandOrderLogic extends BaseLogic
'status' => 1,
'admin_id' => $admin_id,
'total_price' => $arr['total_price'],
'price' => $arr['price'],
'purchase' => $arr['price'],
'oid' => $res['id'],
'code' => $res['code'],

View File

@ -7,6 +7,9 @@ use app\common\model\purchase_product_offer\PurchaseProductOffer;
use app\common\logic\BaseLogic;
use app\common\model\beforehand_order\BeforehandOrder;
use app\common\model\beforehand_order_cart_info\BeforehandOrderCartInfo;
use app\common\model\dict\DictData;
use app\common\model\store_product\StoreProduct;
use app\common\model\store_product_price\StoreProductPrice;
use support\exception\BusinessException;
use think\facade\Db;
@ -31,9 +34,9 @@ class PurchaseProductOfferLogic extends BaseLogic
{
Db::startTrans();
try {
$mark=$params['mark'] ?? '';
if($mark==''){
$mark=BeforehandOrderCartInfo::where('bhoid',$params['order_id'])->where('product_id',$params['product_id'])->value('mark');
$mark = $params['mark'] ?? '';
if ($mark == '') {
$mark = BeforehandOrderCartInfo::where('bhoid', $params['order_id'])->where('product_id', $params['product_id'])->value('mark');
}
PurchaseProductOffer::create([
'order_id' => $params['order_id'],
@ -46,7 +49,7 @@ class PurchaseProductOfferLogic extends BaseLogic
'status' => 0,
]);
BeforehandOrderCartInfo::where(['bhoid'=>$params['order_id'],'product_id'=>$params['product_id']])->update(['is_buyer'=>1]);
BeforehandOrderCartInfo::where(['bhoid' => $params['order_id'], 'product_id' => $params['product_id']])->update(['is_buyer' => 1]);
Db::commit();
return true;
} catch (\Exception $e) {
@ -105,16 +108,47 @@ class PurchaseProductOfferLogic extends BaseLogic
{
Db::startTrans();
try {
$offer=PurchaseProductOffer::where(['id'=>$params['id']])->find();
$offer = PurchaseProductOffer::where(['id' => $params['id']])->find();
$offer->save([
'buyer_nums' => $params['buyer_nums'],
'supplier_id' => $params['supplier_id'],
'price' => $params['purchase'],
'outbound_price' => $params['outbound_price']??0,
'outbound_price' => $params['outbound_price'] ?? 0,
'total_price' => $params['total_price'],
'pay_type' => $params['pay_type']??0,
'pay_type' => $params['pay_type'] ?? 0,
'buyer_confirm' => 1,
]);
$find = StoreProductPrice::where(['offer_id' => $params['id']])->find();
$top_cate_id = StoreProduct::where('id', $offer['product_id'])->value('top_cate_id');
$dict_data = DictData::where('type_value', 'price_lv_' . $top_cate_id)->field('name,value')->select();
$data = [];
$data['bhoid'] = $offer['order_id'];
$data['offer_id'] = $params['id'];
$data['product_id'] = $offer['product_id'];
$data['purchase_price'] = $params['purchase'];
$data['status'] = 0;
if ($dict_data) {
foreach ($dict_data as $k => $v) {
if ($v['name'] == 'purchase') {
$data['purchase_lv'] = $v['value'];
$lv = bcmul($v['value'], $params['purchase'], 2);
$data['purchase'] = bcadd($lv, $params['purchase'], 2);
} elseif ($v['name'] == 'cost') {
$data['cost_lv'] = $v['value'];
$lv = bcmul($v['value'], $params['purchase'], 2);
$data['cost'] = bcadd($lv, $params['purchase'], 2);
} elseif ($v['name'] == 'price') {
$data['price_lv'] = $v['value'];
$lv = bcmul($v['value'], $params['purchase'], 2);
$data['price'] = bcadd($lv, $params['purchase'], 2);
}
}
}
if ($find) {
$find->save($data);
} else {
StoreProductPrice::create($data);
}
// $find=BeforehandOrderCartInfo::where(['bhoid'=>$params['bhoid'],'product_id'=>$offer['product_id']])->find();
// if($find){
// $find->purchase=$params['purchase'];
@ -140,17 +174,17 @@ class PurchaseProductOfferLogic extends BaseLogic
{
Db::startTrans();
try {
$data=[];
foreach($params['product_arr'] as $k=>$v){
$data[]=[
'id'=>$v['id'],
'total_price'=>$v['total_price'],
'price'=>$v['purchase'],
'buyer_nums'=>$v['buyer_nums'],
'supplier_id'=>$params['supplier_id'],
'outbound_price'=>0,
'pay_type'=>$v['pay_type']??0,
'buyer_confirm'=>1,
$data = [];
foreach ($params['product_arr'] as $k => $v) {
$data[] = [
'id' => $v['id'],
'total_price' => $v['total_price'],
'price' => $v['purchase'],
'buyer_nums' => $v['buyer_nums'],
'supplier_id' => $params['supplier_id'],
'outbound_price' => 0,
'pay_type' => $v['pay_type'] ?? 0,
'buyer_confirm' => 1,
];
}
(new PurchaseProductOffer())->saveAll($data);
@ -161,7 +195,7 @@ class PurchaseProductOfferLogic extends BaseLogic
throw new BusinessException($e->getMessage());
}
}
/**
* @notes 库房设置验收信息
* @param array $params
@ -173,13 +207,13 @@ class PurchaseProductOfferLogic extends BaseLogic
{
Db::startTrans();
try {
PurchaseProductOffer::where('id',$params['id'])->update(['is_accept'=>1]);
$data=[
'gross_weight'=>$params['gross_weight']??0,
'net_weight'=>$params['net_weight']??0,
'accept_num'=>$params['accept_num']??0,
PurchaseProductOffer::where('id', $params['id'])->update(['is_accept' => 1]);
$data = [
'gross_weight' => $params['gross_weight'] ?? 0,
'net_weight' => $params['net_weight'] ?? 0,
'accept_num' => $params['accept_num'] ?? 0,
];
BeforehandOrderCartInfo::where(['bhoid'=>$params['bhoid'],'product_id'=>$params['product_id']])->update($data);
BeforehandOrderCartInfo::where(['bhoid' => $params['bhoid'], 'product_id' => $params['product_id']])->update($data);
Db::commit();
return true;
} catch (\Throwable $e) {

View File

@ -0,0 +1,146 @@
<?php
namespace app\admin\logic\store_product_price;
use app\common\model\store_product_price\StoreProductPrice;
use app\common\logic\BaseLogic;
use app\common\model\store_branch_product\StoreBranchProduct;
use app\common\model\store_product\StoreProduct;
use support\exception\BusinessException;
use think\facade\Db;
/**
* 商品价格更改逻辑
* Class StoreProductPriceLogic
* @package app\admin\logic\store_product_price
*/
class StoreProductPriceLogic extends BaseLogic
{
/**
* @notes 添加商品价格更改
* @param array $params
* @return bool
* @author admin
* @date 2024/10/19 11:31
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
StoreProductPrice::create([]);
Db::commit();
return true;
} catch (\Throwable $e) {
Db::rollback();
throw new BusinessException($e->getMessage());
}
}
/**
* @notes 编辑商品价格更改
* @param array $params
* @return bool
* @author admin
* @date 2024/10/19 11:31
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
$find = StoreProductPrice::where('id', $params['id'])->find();
if ($find) {
$find->save([
'status' => 1,
'purchase' => $params['purchase'],
'cost' => $params['cost'],
'price' => $params['price']
]);
StoreProduct::where('id', $find['product_id'])->update([
'purchase' => $find['purchase'],
'cost' => $find['cost'],
'vip_price' => $find['cost'],
'price' => $find['price']
]);
StoreBranchProduct::where('product_id', $find['product_id'])->update([
'purchase' => $find['purchase'],
'cost' => $find['cost'],
'vip_price' => $find['cost'],
'price' => $find['price']
]);
}
Db::commit();
return true;
} catch (\Throwable $e) {
Db::rollback();
throw new BusinessException($e->getMessage());
}
}
/**
* @notes 确认改价
* @param array $params
* @return bool
* @author admin
* @date 2024/10/19 11:31
*/
public static function enterPrice(array $params): bool
{
Db::startTrans();
try {
$find = StoreProductPrice::where('id', $params['id'])->find();
if ($find) {
$find->save([
'status' => 1
]);
StoreProduct::where('id', $find['product_id'])->update([
'purchase' => $find['purchase'],
'cost' => $find['cost'],
'vip_price' => $find['cost'],
'price' => $find['price']
]);
StoreBranchProduct::where('product_id', $find['product_id'])->update([
'purchase' => $find['purchase'],
'cost' => $find['cost'],
'vip_price' => $find['cost'],
'price' => $find['price']
]);
}
Db::commit();
return true;
} catch (\Throwable $e) {
Db::rollback();
throw new BusinessException($e->getMessage());
}
}
/**
* @notes 删除商品价格更改
* @param array $params
* @return bool
* @author admin
* @date 2024/10/19 11:31
*/
public static function delete(array $params): bool
{
return StoreProductPrice::destroy($params['id']);
}
/**
* @notes 获取商品价格更改详情
* @param $params
* @return array
* @author admin
* @date 2024/10/19 11:31
*/
public static function detail($params): array
{
return StoreProductPrice::findOrEmpty($params['id'])->toArray();
}
}

View File

@ -0,0 +1,116 @@
<?php
namespace app\admin\logic\warehouse_product_return;
use app\common\model\warehouse_product_return\WarehouseProductReturn;
use app\common\logic\BaseLogic;
use app\common\model\warehouse_product\WarehouseProduct;
use app\common\model\warehouse_product_storege\WarehouseProductStorege;
use support\exception\BusinessException;
use think\facade\Db;
/**
* 仓库商品退货处理逻辑
* Class WarehouseProductReturnLogic
* @package app\admin\logic\warehouse_product_return
*/
class WarehouseProductReturnLogic extends BaseLogic
{
/**
* @notes 添加仓库商品退货处理
* @param array $params
* @return bool
* @author admin
* @date 2024/10/19 16:02
*/
public static function add(array $params): bool
{
Db::startTrans();
try {
$find=WarehouseProduct::where('id',$params['id'])->find();
if($find){
WarehouseProductReturn::create([
'source_id'=>$params['id'],
'warehouse_id'=>$find['warehouse_id'],
'supplier_id'=>$find['supplier_id'],
'store_id'=>$find['store_id'],
'product_id'=>$find['product_id'],
'unit'=>$find['unit'],
'financial_pm'=>$params['financial_pm'],
'admin_id'=>$params['admin_id'],
'nums'=>$params['nums'],
'return_type'=>$params['return_type'],
'mark'=>$params['mark'],
'price'=>$find['price'],
'total_price'=>bcmul($params['nums'],$find['price'],2),
]);
if($params['financial_pm']==1 &&$params['return_type']==1){
WarehouseProductStorege::where(['product_id'=>$find['product_id'],'warehouse_id'=>$find['warehouse_id']])->inc('nums',$params['nums'])->update();
}elseif($params['financial_pm']==0 &&$params['return_type']==2){
WarehouseProductStorege::where(['product_id'=>$find['product_id'],'warehouse_id'=>$find['warehouse_id']])->dec('nums',$params['nums'])->update();
}
}
Db::commit();
return true;
} catch (\Throwable $e) {
Db::rollback();
throw new BusinessException($e->getMessage());
}
}
/**
* @notes 编辑仓库商品退货处理
* @param array $params
* @return bool
* @author admin
* @date 2024/10/19 16:02
*/
public static function edit(array $params): bool
{
Db::startTrans();
try {
WarehouseProductReturn::where('id', $params['id'])->update([
]);
Db::commit();
return true;
} catch (\Throwable $e) {
Db::rollback();
throw new BusinessException($e->getMessage());
}
}
/**
* @notes 删除仓库商品退货处理
* @param array $params
* @return bool
* @author admin
* @date 2024/10/19 16:02
*/
public static function delete(array $params): bool
{
return WarehouseProductReturn::destroy($params['id']);
}
/**
* @notes 获取仓库商品退货处理详情
* @param $params
* @return array
* @author admin
* @date 2024/10/19 16:02
*/
public static function detail($params): array
{
return WarehouseProductReturn::findOrEmpty($params['id'])->toArray();
}
}

View File

@ -0,0 +1,82 @@
<?php
namespace app\admin\validate\store_product_price;
use app\common\validate\BaseValidate;
/**
* 商品价格更改验证器
* Class StoreProductPriceValidate
* @package app\admin\validate\store_product_price
*/
class StoreProductPriceValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
];
/**
* @notes 添加场景
* @return StoreProductPriceValidate
* @author admin
* @date 2024/10/19 11:31
*/
public function sceneAdd()
{
return $this->remove('id', true);
}
/**
* @notes 编辑场景
* @return StoreProductPriceValidate
* @author admin
* @date 2024/10/19 11:31
*/
public function sceneEdit()
{
return $this->only(['id']);
}
/**
* @notes 删除场景
* @return StoreProductPriceValidate
* @author admin
* @date 2024/10/19 11:31
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return StoreProductPriceValidate
* @author admin
* @date 2024/10/19 11:31
*/
public function sceneDetail()
{
return $this->only(['id']);
}
}

View File

@ -0,0 +1,82 @@
<?php
namespace app\admin\validate\warehouse_product_return;
use app\common\validate\BaseValidate;
/**
* 仓库商品退货处理验证器
* Class WarehouseProductReturnValidate
* @package app\admin\validate\warehouse_product_return
*/
class WarehouseProductReturnValidate extends BaseValidate
{
/**
* 设置校验规则
* @var string[]
*/
protected $rule = [
'id' => 'require',
];
/**
* 参数描述
* @var string[]
*/
protected $field = [
'id' => 'id',
];
/**
* @notes 添加场景
* @return WarehouseProductReturnValidate
* @author admin
* @date 2024/10/19 16:02
*/
public function sceneAdd()
{
return $this->remove('id', true);
}
/**
* @notes 编辑场景
* @return WarehouseProductReturnValidate
* @author admin
* @date 2024/10/19 16:02
*/
public function sceneEdit()
{
return $this->only(['id']);
}
/**
* @notes 删除场景
* @return WarehouseProductReturnValidate
* @author admin
* @date 2024/10/19 16:02
*/
public function sceneDelete()
{
return $this->only(['id']);
}
/**
* @notes 详情场景
* @return WarehouseProductReturnValidate
* @author admin
* @date 2024/10/19 16:02
*/
public function sceneDetail()
{
return $this->only(['id']);
}
}

View File

@ -0,0 +1,22 @@
<?php
namespace app\common\model\store_product_price;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 商品价格更改模型
* Class StoreProductPrice
* @package app\common\model\store_product_price
*/
class StoreProductPrice extends BaseModel
{
use SoftDelete;
protected $name = 'store_product_price';
protected $deleteTime = 'delete_time';
}

View File

@ -0,0 +1,22 @@
<?php
namespace app\common\model\warehouse_product_return;
use app\common\model\BaseModel;
use think\model\concern\SoftDelete;
/**
* 仓库商品退货处理模型
* Class WarehouseProductReturn
* @package app\common\model\warehouse_product_return
*/
class WarehouseProductReturn extends BaseModel
{
use SoftDelete;
protected $name = 'warehouse_product_return';
protected $deleteTime = 'delete_time';
}