feat: Update Order/CustomOrder models and controllers with event integration

- Add integration fields to Order model: packing_*, courier_*, trello_card_id, qr_token
- Add integration fields to CustomOrder model: packing_*, proof_approved_*, courier_*, trello_card_id, qr_token
- Update Order model fillable array and add relationships (packedBy)
- Update CustomOrder model fillable array, casts, and add relationships (packedBy)
- Add isCustomOrder() method to both models for type checking
- Update OrderController to emit OrderCreated and DepositPaid events on successful payment
- For standard orders: full payment -> prep status, emit events
- For custom orders: deposit -> design status, balance -> printing status, emit respective events
- Add approveProof() method to CustomOrderController (POST /custom-orders/{id}/approve-proof)
- Add requestChanges() method to CustomOrderController (POST /custom-orders/{id}/request-changes)
- Add markBalancePaid() method to CustomOrderController (POST /custom-orders/{id}/pay-balance)
- All new methods emit appropriate events (ProofApproved, ProofRevisionRequested, BalancePaid)
- Add database migration for proof_approved and proof_approved_at fields on custom_orders
- Add routes for new custom order endpoints with UUID binding
- Import all required event classes in both controllers
This commit is contained in:
twotalesanimation
2026-01-02 14:35:01 +02:00
parent 12aadfd917
commit 783cc88c6d
7 changed files with 295 additions and 41 deletions
@@ -0,0 +1,26 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('custom_orders', function (Blueprint $table) {
// Add proof approval fields if they don't exist
if (!Schema::hasColumn('custom_orders', 'proof_approved')) {
$table->boolean('proof_approved')->default(false);
$table->timestamp('proof_approved_at')->nullable();
}
});
}
public function down(): void
{
Schema::table('custom_orders', function (Blueprint $table) {
$table->dropColumn(['proof_approved', 'proof_approved_at']);
});
}
};