- Move create/edit logic from relation managers to dedicated resource pages - Add transaction handling with proper rollback in sale create/update - Fix expense transaction creation by using correct array access - Set default client from query parameter in sale/expense forms - Exclude 'type' field from balance creation to prevent errors
83 lines
2.5 KiB
PHP
83 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\SaleResource\Pages;
|
|
|
|
use App\Actions\Transactions\CreateTransactionAction;
|
|
use App\DataObjects\CreateTransactionDTO;
|
|
use App\Filament\Resources\SaleResource;
|
|
use Filament\Actions;
|
|
use Filament\Resources\Pages\EditRecord;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Arr;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Support\Facades\Pipeline;
|
|
|
|
class EditSale extends EditRecord
|
|
{
|
|
protected static string $resource = SaleResource::class;
|
|
|
|
protected function getHeaderActions(): array
|
|
{
|
|
return [
|
|
Actions\DeleteAction::make(),
|
|
];
|
|
}
|
|
|
|
protected function mutateFormDataBeforeSave(array $data): array
|
|
{
|
|
return $this->getFormDataMutation($data);
|
|
}
|
|
|
|
protected function handleRecordUpdate(Model $record, array $data): Model
|
|
{
|
|
$transactions = $this->data['transactions'] ?? [];
|
|
return $this->processUpdate($record, $data, $transactions);
|
|
}
|
|
|
|
public function getFormDataMutation(array $data): array
|
|
{
|
|
return Arr::except($data, ['client', 'transactions', 'with_discount']);
|
|
}
|
|
|
|
public function processUpdate(Model $record, array $data, array $transactions): Model
|
|
{
|
|
try {
|
|
DB::beginTransaction();
|
|
$record->update($data);
|
|
$branch = $record->branch;
|
|
|
|
// Delete existing transactions and their related ledgers/balances
|
|
$record->transactions->each(function ($transaction) {
|
|
$transaction->ledgers->each(function ($ledger) {
|
|
$ledger->balances()->delete();
|
|
$ledger->delete();
|
|
});
|
|
$transaction->delete();
|
|
});
|
|
|
|
// Create new transactions
|
|
foreach ($transactions as $transaction) {
|
|
$tData = [
|
|
'branch_id' => $branch->id,
|
|
'happened_on' => $record->happened_on,
|
|
...$transaction,
|
|
];
|
|
|
|
$payload = new CreateTransactionDTO(data: $tData, transactionable: $record);
|
|
|
|
Pipeline::send(passable: $payload)->through(
|
|
[
|
|
CreateTransactionAction::class,
|
|
]
|
|
)->thenReturn();
|
|
}
|
|
DB::commit();
|
|
} catch (\Exception $exception) {
|
|
DB::rollBack();
|
|
throw new \Exception('Failed to save transactions : '.$exception->getMessage());
|
|
}
|
|
|
|
return $record;
|
|
}
|
|
}
|