120 lines
3.1 KiB
PHP
120 lines
3.1 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | likeadmin快速开发前后端分离管理后台(PHP版)
|
||
// +----------------------------------------------------------------------
|
||
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
|
||
// | 开源版本可自由商用,可去除界面版权logo
|
||
// | gitee下载:https://gitee.com/likeshop_gitee/likeadmin
|
||
// | github下载:https://github.com/likeshop-github/likeadmin
|
||
// | 访问官网:https://www.likeadmin.cn
|
||
// | likeadmin团队 版权所有 拥有最终解释权
|
||
// +----------------------------------------------------------------------
|
||
// | author: likeadminTeam
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\adminapi\logic;
|
||
|
||
|
||
use app\common\model\auth\Admin;
|
||
use app\common\model\Company;
|
||
use app\common\model\contract\Contract;
|
||
use app\common\model\contract\ShopContract;
|
||
use app\common\model\ShopMerchant;
|
||
use app\common\logic\BaseLogic;
|
||
use think\facade\Db;
|
||
|
||
|
||
/**
|
||
* ShopMerchant逻辑
|
||
* Class ShopMerchantLogic
|
||
* @package app\adminapi\logic
|
||
*/
|
||
class ShopMerchantLogic extends BaseLogic
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 添加
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/09/13 16:45
|
||
*/
|
||
public static function add(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
ShopMerchant::create([
|
||
|
||
]);
|
||
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 编辑
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/09/13 16:45
|
||
*/
|
||
public static function edit(array $params): bool
|
||
{
|
||
Db::startTrans();
|
||
try {
|
||
ShopMerchant::where('id', $params['id'])->update([
|
||
|
||
]);
|
||
|
||
Db::commit();
|
||
return true;
|
||
} catch (\Exception $e) {
|
||
Db::rollback();
|
||
self::setError($e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 删除
|
||
* @param array $params
|
||
* @return bool
|
||
* @author likeadmin
|
||
* @date 2023/09/13 16:45
|
||
*/
|
||
public static function delete(array $params): bool
|
||
{
|
||
return ShopMerchant::destroy($params['id']);
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取详情
|
||
* @param $params
|
||
* @return array
|
||
* @author likeadmin
|
||
* @date 2023/09/13 16:45
|
||
*/
|
||
public static function detail($params): array
|
||
{
|
||
$data = ShopMerchant::findOrEmpty($params['id'])->toArray();
|
||
if ($data) {
|
||
$where[]=['party_b','=', $data['id']];
|
||
if(isset($params['contract_type'])){
|
||
$where[]=['contract_type','=',$params['contract_type']];
|
||
}
|
||
$data['contract'] = ShopContract::where($where)->with(['party_a_info', 'contractType'])->find();
|
||
|
||
}
|
||
return $data;
|
||
// return ShopMerchant::findOrEmpty($params['id'])->toArray();
|
||
}
|
||
} |