89 lines
1.9 KiB
PHP
89 lines
1.9 KiB
PHP
<?php
|
|
/**
|
|
* RmaReasonRepo.php
|
|
*
|
|
* @copyright 2022 opencart.cn - All Rights Reserved
|
|
* @link http://www.guangdawangluo.com
|
|
* @author TL <mengwb@opencart.cn>
|
|
* @created 2022-08-01 20:42:05
|
|
* @modified 2022-08-01 20:42:05
|
|
*/
|
|
|
|
namespace Beike\Repositories;
|
|
|
|
use Beike\Models\Rma;
|
|
use Beike\Models\RmaReason;
|
|
use Exception;
|
|
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class RmaReasonRepo
|
|
{
|
|
/**
|
|
* 创建一个记录
|
|
* @param $data
|
|
* @return Builder|Model
|
|
*/
|
|
public static function create($data)
|
|
{
|
|
$item = RmaReason::query()->create($data);
|
|
return $item;
|
|
}
|
|
|
|
/**
|
|
* @param $reason
|
|
* @param $data
|
|
* @return Builder|Builder[]|Collection|Model|mixed
|
|
* @throws Exception
|
|
*/
|
|
public static function update($reason, $data)
|
|
{
|
|
if (!$reason instanceof RmaReason) {
|
|
$reason = RmaReason::query()->find($reason);
|
|
}
|
|
if (!$reason) {
|
|
throw new Exception("退换货原因id $reason 不存在");
|
|
}
|
|
$reason->update($data);
|
|
return $reason;
|
|
}
|
|
|
|
/**
|
|
* @param $id
|
|
* @return Builder|Builder[]|Collection|Model|null
|
|
*/
|
|
public static function find($id)
|
|
{
|
|
return RmaReason::query()->find($id);
|
|
}
|
|
|
|
/**
|
|
* @param $id
|
|
* @return void
|
|
*/
|
|
public static function delete($id)
|
|
{
|
|
$reason = RmaReason::query()->find($id);
|
|
if ($reason) {
|
|
$reason->delete();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param $data
|
|
* @return LengthAwarePaginator
|
|
*/
|
|
public static function list($data = []): LengthAwarePaginator
|
|
{
|
|
$builder = Rma::query();
|
|
|
|
if (isset($data['name'])) {
|
|
$builder->where('name', 'like', "%{$data['name']}%");
|
|
}
|
|
|
|
return $builder->paginate(10);
|
|
}
|
|
}
|