#108 Fix Invoice and Quote Internal IDs
This commit is contained in:
parent
8f8b3a9943
commit
a4e4c30118
@ -108,6 +108,11 @@ public static function paymentRelationManagerTable(Table $table): Table
|
||||
TextColumn::make('check_number')
|
||||
->extraHeaderAttributes(['class' => 'w-full']),
|
||||
|
||||
TextColumn::make('amount')
|
||||
->label('Total amount')
|
||||
->alignRight()
|
||||
->money(),
|
||||
|
||||
TextColumn::make('applied_amount')
|
||||
->alignRight()
|
||||
->money(),
|
||||
|
@ -214,6 +214,8 @@ public static function table(Table $table): Table
|
||||
->color('primary')
|
||||
->searchable(),
|
||||
|
||||
TextColumn::make('internal_id'),
|
||||
|
||||
TextColumn::make('date')
|
||||
->date('Y-m-d')
|
||||
->sortable()
|
||||
|
@ -2,16 +2,21 @@
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use App\Observers\QuoteObserver;
|
||||
use Illuminate\Database\Eloquent\Attributes\ObservedBy;
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
||||
use Illuminate\Database\Eloquent\Relations\HasMany;
|
||||
|
||||
#[ObservedBy(QuoteObserver::class)]
|
||||
|
||||
class Quote extends Model
|
||||
{
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'internal_id',
|
||||
'customer_id',
|
||||
'date',
|
||||
'notes',
|
||||
|
@ -23,7 +23,8 @@ public function creating(Invoice $invoice): void
|
||||
public function created(Invoice $invoice): void
|
||||
{
|
||||
|
||||
$invoice->internal_id = 'TN4'.str_pad($invoice->id, 4, '0', STR_PAD_LEFT);
|
||||
// $invoice->internal_id = 'TN4'.str_pad($invoice->id, 4, '0', STR_PAD_LEFT);
|
||||
$invoice->internal_id = 'TN'.$invoice->id + 4000;
|
||||
$invoice->saveQuietly();
|
||||
|
||||
$invoice->calculateTotals();
|
||||
|
17
app/Observers/QuoteObserver.php
Normal file
17
app/Observers/QuoteObserver.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Observers;
|
||||
|
||||
use App\Models\Quote;
|
||||
|
||||
class QuoteObserver
|
||||
{
|
||||
public function created(Quote $quote): void
|
||||
{
|
||||
$company_string = strtoupper(substr($quote->customer->company_name, 0, 3));
|
||||
$padded_id = str_pad($quote->id, 4, '0', STR_PAD_LEFT);
|
||||
|
||||
$quote->internal_id = 'Q'.$padded_id.'-'.$company_string;
|
||||
$quote->save();
|
||||
}
|
||||
}
|
@ -15,6 +15,7 @@ public function up(): void
|
||||
$table->id();
|
||||
|
||||
$table->foreignId('customer_id')->constrained();
|
||||
$table->string('internal_id')->nullable();
|
||||
$table->date('date');
|
||||
$table->longText('notes')->nullable();
|
||||
|
||||
|
@ -18,6 +18,7 @@
|
||||
(604) 871-9991 <br>
|
||||
info@sewtopnotch.com <br>
|
||||
GST# 846025062RT0001 <br>
|
||||
Quote {{$quote->internal_id}}
|
||||
</div>
|
||||
|
||||
<div class="fs-3 fw-bold text-primary mt-2">
|
||||
|
Loading…
x
Reference in New Issue
Block a user