add refund logic and fix books inventory logic
Deploy to Shared Hosting / Shared hosting deploy (push) Failing after 47s
Tests / PHPUnit (push) Failing after 1m20s

This commit is contained in:
root
2026-08-22 13:44:25 -04:00
parent 23d1cbb64c
commit d906a915d6
45 changed files with 4711 additions and 442 deletions
+5 -1
View File
@@ -30,7 +30,12 @@ protected $table = 'inventory_items';
'condition',
'isbn',
'edition',
'author',
'sku',
'is_active',
'retired_at',
'isbn_edition_key',
'sku_normalized',
'notes',
// audit
@@ -49,7 +54,6 @@ protected $table = 'inventory_items';
'type' => 'required|in_list[classroom,book,office,kitchen]',
'name' => 'required|min_length[2]',
'quantity' => 'permit_empty|integer',
'unit_price' => 'permit_empty|decimal',
'school_year' => 'required|string|max_length[16]',
];
}