feat(warehouse_product): 添加仓库产品结算功能

This commit is contained in:
mkm 2024-09-06 17:53:43 +08:00
parent 1dca91528d
commit 6e0a9e73f1
8 changed files with 64 additions and 15 deletions

View File

@ -109,6 +109,17 @@ class WarehouseProductController extends BaseAdminController
return $this->data($result); return $this->data($result);
} }
/**
* @notes 结算
* @return \think\response\Json
* @author admin
* @date 2024/07/31 16:55
*/
public function settlement(){
$id=$this->request->post('id');
$result = WarehouseProductLogic::settlement($id);
return $this->success('结算成功', [], 1, 1);
}
/** /**
* 确认操作 * 确认操作
*/ */

View File

@ -80,7 +80,7 @@ class StoreProductLists extends BaseAdminDataLists implements ListsSearchInterfa
$list = StoreProduct::where($this->searchWhere) $list = StoreProduct::where($this->searchWhere)
->alias('p') // 为 StoreProduct 表设置别名 ->alias('p') // 为 StoreProduct 表设置别名
->limit($this->limitOffset, $this->limitLength) ->limit($this->limitOffset, $this->limitLength)
->field('p.id, p.store_name, p.image,p.stock as total_stock,p.unit, ->field('p.id, p.store_name, p.image,p.stock as total_stock,p.unit,p.total_price,
(SELECT SUM(c.cart_num) FROM `la_store_order_cart_info` c WHERE c.product_id=p.id AND c.is_pay=1 AND c.delete_time IS NULL) AS sales, (SELECT SUM(c.cart_num) FROM `la_store_order_cart_info` c WHERE c.product_id=p.id AND c.is_pay=1 AND c.delete_time IS NULL) AS sales,
(SELECT SUM(b.stock) FROM `la_store_branch_product` b WHERE b.product_id=p.id AND b.delete_time IS NULL) AS store_stock, (SELECT SUM(b.stock) FROM `la_store_branch_product` b WHERE b.product_id=p.id AND b.delete_time IS NULL) AS store_stock,
(SELECT SUM(w.nums) FROM `la_warehouse_product_storege` w WHERE w.product_id=p.id AND w.delete_time IS NULL) AS warehouse_stock, (SELECT SUM(w.nums) FROM `la_warehouse_product_storege` w WHERE w.product_id=p.id AND w.delete_time IS NULL) AS warehouse_stock,
@ -110,6 +110,16 @@ class StoreProductLists extends BaseAdminDataLists implements ListsSearchInterfa
}else{ }else{
$item->total_purchase='0元'; $item->total_purchase='0元';
} }
if($item->total_price){
$item->total_price=$item->total_price.'元';
}else{
$item->total_price='0元';
}
if($item->total_stock){
$item->total_stock=$item->total_stock.'|'.$unit_name;
}else{
$item->total_stock='';
}
}) })
->toArray(); ->toArray();
return $list; return $list;

View File

@ -83,7 +83,7 @@ class StoreBranchProductLists extends BaseAdminDataLists implements ListsSearchI
$this->searchWhere[] = $where; $this->searchWhere[] = $where;
} }
return StoreBranchProduct::where($this->searchWhere) return StoreBranchProduct::where($this->searchWhere)
->field(['id', 'store_id', 'product_id', 'image', 'store_name', 'store_info', 'cate_id', 'price', 'sales', 'stock', 'unit', 'cost', 'purchase', 'status', 'batch', 'vip_price','bar_code', 'manufacturer_information']) ->field(['id', 'store_id', 'product_id', 'image', 'store_name', 'store_info', 'cate_id', 'price', 'sales', 'stock', 'unit', 'cost', 'purchase', 'status', 'batch', 'vip_price','bar_code', 'manufacturer_information','total_price'])
->when(!empty($this->adminInfo['store_id']), function ($query) { ->when(!empty($this->adminInfo['store_id']), function ($query) {
$query->where('store_id', $this->adminInfo['store_id']); $query->where('store_id', $this->adminInfo['store_id']);
}) })

View File

@ -6,7 +6,7 @@ namespace app\admin\lists\supplier;
use app\admin\lists\BaseAdminDataLists; use app\admin\lists\BaseAdminDataLists;
use app\common\model\supplier\Supplier; use app\common\model\supplier\Supplier;
use app\common\lists\ListsSearchInterface; use app\common\lists\ListsSearchInterface;
use app\common\model\warehouse_product\WarehouseProduct;
/** /**
* 供应链列表 * 供应链列表
@ -47,7 +47,10 @@ class SupplierLists extends BaseAdminDataLists implements ListsSearchInterface
->field(['id', 'category_id', 'mer_name', 'phone', 'settle_cycle', 'address', 'mark']) ->field(['id', 'category_id', 'mer_name', 'phone', 'settle_cycle', 'address', 'mark'])
->limit($this->limitOffset, $this->limitLength) ->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc']) ->order(['id' => 'desc'])
->select() ->select()->each(function ($item) {
$item->total_completed_amount=WarehouseProduct::where('supplier_id',$item['id'])->where('financial_pm',1)->where('is_pay',1)->sum('total_price');
$item->total_outstanding_amount=WarehouseProduct::where('supplier_id',$item['id'])->where('financial_pm',1)->where('is_pay',0)->sum('total_price');
})
->toArray(); ->toArray();
} }

View File

@ -33,7 +33,7 @@ class WarehouseProductLists extends BaseAdminDataLists implements ListsSearchInt
public function setSearch(): array public function setSearch(): array
{ {
return [ return [
'=' => ['warehouse_id', 'financial_pm', 'store_id','oid','supplier_id'], '=' => ['warehouse_id', 'financial_pm', 'store_id','oid','supplier_id','is_pay'],
'between_time' => 'create_time' 'between_time' => 'create_time'
]; ];
} }
@ -71,7 +71,7 @@ class WarehouseProductLists extends BaseAdminDataLists implements ListsSearchInt
} }
} }
return WarehouseProduct::where($this->searchWhere) return WarehouseProduct::where($this->searchWhere)
->field(['id', 'oid','admin_id','supplier_id', 'store_id', 'warehouse_id', 'product_id', 'financial_pm', 'batch', 'nums', 'price', 'purchase', 'cost', 'total_price', 'manufacture', 'expiration_date', 'status', 'mark', 'create_time']) ->field(['id', 'oid','admin_id','supplier_id', 'store_id', 'warehouse_id', 'product_id', 'financial_pm', 'batch', 'nums', 'price', 'purchase', 'cost', 'total_price', 'manufacture', 'expiration_date', 'status', 'mark', 'create_time','is_pay'])
->limit($this->limitOffset, $this->limitLength) ->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc']) ->order(['id' => 'desc'])
->select()->each(function ($item) { ->select()->each(function ($item) {

View File

@ -236,6 +236,27 @@ class WarehouseProductLogic extends BaseLogic
throw new BusinessException('没有查到出入库信息'); throw new BusinessException('没有查到出入库信息');
} }
/**
* * @notes 结算
* @param $id
* @return void
*/
public static function settlement($id){
Db::startTrans();
try {
$find=WarehouseProduct::where(['id'=>$id,'financial_pm'=>1,'is_pay'=>0])->find();
if($find){
$find->is_pay=1;
$find->save();
} else{
throw new BusinessException('没有查到出入库信息');
}
Db::commit();
} catch (\Throwable $th) {
Db::rollback();
throw new BusinessException($th->getMessage());
}
}
/** /**
* @notes 获取商品仓储信息详情 * @notes 获取商品仓储信息详情
* @param $params * @param $params

View File

@ -52,7 +52,7 @@ class SupplierValidate extends BaseValidate
*/ */
public function sceneAdd() public function sceneAdd()
{ {
return $this->only(['mer_name','phone','settle_cycle','address','mark','status']); return $this->only(['mer_name','phone','settle_cycle','address']);
} }
@ -64,7 +64,7 @@ class SupplierValidate extends BaseValidate
*/ */
public function sceneEdit() public function sceneEdit()
{ {
return $this->only(['id','mer_name','phone','settle_cycle','address','mark','status']); return $this->only(['id','mer_name','phone','settle_cycle','address']);
} }

View File

@ -106,13 +106,17 @@ class OrderDetail
$sheet->mergeCells('A' . ($count + 11) . ':J' . $count + 11); $sheet->mergeCells('A' . ($count + 11) . ':J' . $count + 11);
$sheet->setCellValue('A' . $count + 12, '仓库',);
// $sheet->setCellValue('B' . $count + 11, $this->warehouse); $sheet->setCellValue('A' . $count + 12, '下单人',);
$sheet->mergeCells('B' . ($count + 12) . ':C' . $count + 12); $sheet->mergeCells('B' . ($count + 12) . ':C' . $count + 12);
$sheet->setCellValue('D' . $count + 12, '送货'); $sheet->setCellValue('D' . $count + 12, '电话');
$sheet->mergeCells('E' . ($count + 12) . ':F' . $count + 12);
$sheet->setCellValue('G' . $count + 12, '签收人'); $sheet->setCellValue('A' . $count + 13, '仓库',);
$sheet->mergeCells('H' . ($count + 12) . ':J' . $count + 12); $sheet->mergeCells('B' . ($count + 13) . ':C' . $count + 13);
$sheet->setCellValue('D' . $count + 13, '送货');
$sheet->mergeCells('E' . ($count + 13) . ':F' . $count + 13);
$sheet->setCellValue('G' . $count + 13, '签收人');
$sheet->mergeCells('H' . ($count + 13) . ':J' . $count + 13);
// 设置单元格的样式 // 设置单元格的样式
$styleArray = [ $styleArray = [
@ -131,7 +135,7 @@ class OrderDetail
], ],
], ],
]; ];
$sheet->getStyle('A1:J' . ($count + 12))->applyFromArray($styleArray); $sheet->getStyle('A1:J' . ($count + 13))->applyFromArray($styleArray);
// 保存文件到 public 下 // 保存文件到 public 下