57 lines
1.3 KiB
PHP
57 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Repositories\Shop;
|
|
|
|
use Illuminate\Support\Str;
|
|
|
|
use App\Models\Shop\Invoice;
|
|
|
|
class Invoices
|
|
{
|
|
|
|
public static function saveInvoice($order_id, $data)
|
|
{
|
|
$data['order_id'] = $order_id;
|
|
dump($data);
|
|
exit;
|
|
return self::store($data);
|
|
}
|
|
|
|
public static function get($id, $relations = false)
|
|
{
|
|
return $relations ? Invoice::with($relations)->findOrFail($id) : Invoice::findOrFail($id);
|
|
}
|
|
|
|
public static function store($data)
|
|
{
|
|
return ($data['id'] ?? false) ? self::update($data) : self::create($data);
|
|
}
|
|
|
|
public static function create($data)
|
|
{
|
|
$data['uuid'] = Str::uuid()->toString();
|
|
$data['ref'] = self::getNewRef();
|
|
return Invoice::create($data);
|
|
}
|
|
|
|
public static function update($data, $id = false)
|
|
{
|
|
$id = $id ? $id : $data['id'];
|
|
$item = self::get($id);
|
|
$item->update($data);
|
|
return $item;
|
|
}
|
|
|
|
public static function delete($id)
|
|
{
|
|
return Invoice::destroy($id);
|
|
}
|
|
|
|
public static function getNewRef()
|
|
{
|
|
$ref = date('ym') . '00000';
|
|
$last_ref = Invoice::orderBy('ref', 'desc')->where('ref', '>', $ref)->first();
|
|
return $last_ref ? $last_ref + 1 : $ref + 1;
|
|
}
|
|
}
|