diff --git a/app/common/dao/store/order/StoreOrderDao.php b/app/common/dao/store/order/StoreOrderDao.php index 5674928b..5b271b79 100755 --- a/app/common/dao/store/order/StoreOrderDao.php +++ b/app/common/dao/store/order/StoreOrderDao.php @@ -76,7 +76,7 @@ class StoreOrderDao extends BaseDao }); if (isset($where['source']) && ($where['source'] == 103||$where['source'] == 105)) { $wheres['activity_type'] = [0, 2, 98]; - $wheres['source'] = [0,2,103,105]; + $wheres['source'] = [0,2,103,105,999]; $query->where($wheres); unset($where['source']); } else { diff --git a/app/common/dao/system/merchant/FinancialRecordDao.php b/app/common/dao/system/merchant/FinancialRecordDao.php index 06d3ece8..e4635b01 100755 --- a/app/common/dao/system/merchant/FinancialRecordDao.php +++ b/app/common/dao/system/merchant/FinancialRecordDao.php @@ -82,6 +82,9 @@ class FinancialRecordDao extends BaseDao ->when(isset($where['date']) && $where['date'] !== '', function ($query) use ($where) { getModelTime($query, $where['date'], 'create_time'); }) + ->when(isset($where['order_id']) && $where['order_id'] !== '', function ($query) use ($where) { + $query->where('order_id', $where['order_id']); + }) ->when(isset($where['is_mer']) && $where['is_mer'] !== '', function ($query) use ($where) { if($where['is_mer']){ $query->where('mer_id',$where['is_mer'])->where('type','in',[0,1, 2]); diff --git a/app/common/repositories/system/merchant/MerchantIntentionRepository.php b/app/common/repositories/system/merchant/MerchantIntentionRepository.php index 54255aff..56c48c81 100755 --- a/app/common/repositories/system/merchant/MerchantIntentionRepository.php +++ b/app/common/repositories/system/merchant/MerchantIntentionRepository.php @@ -13,6 +13,7 @@ namespace app\common\repositories\system\merchant; use app\common\model\system\merchant\Merchant; +use app\common\model\system\merchant\MerchantCategory; use app\common\model\system\merchant\MerchantIntention; use app\common\repositories\BaseRepository; use crmeb\jobs\SendSmsJob; @@ -117,6 +118,7 @@ class MerchantIntentionRepository extends BaseRepository $config = systemConfig(['broadcast_room_type', 'broadcast_goods_type']); $margin = app()->make(MerchantTypeRepository::class)->get($intention['mer_type_id']); + $commissionRate = MerchantCategory::where('merchant_category_id', $intention['merchant_category_id'])->value('commission_rate'); $data['is_margin'] = $margin['is_margin'] ?? -1; $data['margin'] = $margin['margin'] ?? 0; $merData = []; @@ -148,6 +150,7 @@ class MerchantIntentionRepository extends BaseRepository 'is_company'=>$intention['is_company'], 'business_status'=>2, 'mer_settlement_agree_status'=>1, + 'commission_rate'=>$commissionRate, ]; if($margin['type_code']=='PersonalStore'){ $merData['mer_address']='集体地址'; diff --git a/app/controller/admin/order/Order.php b/app/controller/admin/order/Order.php index e5050711..88537611 100755 --- a/app/controller/admin/order/Order.php +++ b/app/controller/admin/order/Order.php @@ -13,6 +13,7 @@ namespace app\controller\admin\order; +use app\common\repositories\system\merchant\FinancialRecordRepository; use crmeb\basic\BaseController; use app\common\repositories\store\ExcelRepository; use app\common\repositories\system\merchant\MerchantRepository; @@ -201,4 +202,18 @@ class Order extends BaseController $data = $this->repository->childrenList($id, 0); return app('json')->success($data); } + + /** + * 订单资金流水 + * @param $id + * @return mixed + */ + public function financeRecord($id) + { + /** @var FinancialRecordRepository $repo */ + $repo = app()->make(FinancialRecordRepository::class); + $data = $repo->getList(['order_id' => $id], 1, 9999); + return app('json')->success($data); + } + }