add test batches

This commit is contained in:
root
2026-06-08 23:45:55 -04:00
parent c792b8be05
commit 8d4d610b82
1480 changed files with 22587 additions and 10762 deletions
@@ -6,16 +6,12 @@ use Illuminate\Foundation\Http\FormRequest;
class CarryforwardAdjustmentRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function authorize(): bool { return true; }
public function rules(): array
{
return [
'amount' => ['required', 'numeric', 'min:0'],
'reason' => ['nullable', 'string', 'max:255'],
'amount' => ['required','numeric','min:0'],
'reason' => ['nullable','string','max:255'],
];
}
}
@@ -6,18 +6,14 @@ use Illuminate\Foundation\Http\FormRequest;
class CarryforwardFinalizeRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function authorize(): bool { return true; }
public function rules(): array
{
return [
'from_school_year' => ['required_without:id', 'string', 'max:20'],
'to_school_year' => ['required_without:id', 'string', 'max:20'],
'parent_id' => ['nullable', 'integer'],
'reason' => ['nullable', 'string', 'max:255'],
'from_school_year' => ['required_without:id','string','max:20'],
'to_school_year' => ['required_without:id','string','max:20'],
'parent_id' => ['nullable','integer'],
'reason' => ['nullable','string','max:255'],
];
}
}
@@ -6,18 +6,14 @@ use Illuminate\Foundation\Http\FormRequest;
class CarryforwardPreviewRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function authorize(): bool { return true; }
public function rules(): array
{
return [
'from_school_year' => ['required', 'string', 'max:20'],
'to_school_year' => ['required', 'string', 'max:20'],
'parent_id' => ['nullable', 'integer'],
'minimum_balance' => ['nullable', 'numeric', 'min:0'],
'from_school_year' => ['required','string','max:20'],
'to_school_year' => ['required','string','max:20'],
'parent_id' => ['nullable','integer'],
'minimum_balance' => ['nullable','numeric','min:0'],
];
}
}
@@ -6,24 +6,20 @@ use Illuminate\Foundation\Http\FormRequest;
class EventChargeLifecycleRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function authorize(): bool { return true; }
public function rules(): array
{
return [
'event_id' => ['nullable', 'integer'],
'parent_id' => ['nullable', 'integer'],
'student_id' => ['nullable', 'integer'],
'school_year' => ['nullable', 'string', 'max:20'],
'semester' => ['nullable', 'string', 'max:40'],
'event_name' => ['nullable', 'string', 'max:255'],
'title' => ['nullable', 'string', 'max:255'],
'description' => ['nullable', 'string'],
'amount' => ['nullable', 'numeric', 'min:0'],
'invoice_id' => ['nullable', 'integer'],
'event_id' => ['nullable','integer'],
'parent_id' => ['nullable','integer'],
'student_id' => ['nullable','integer'],
'school_year' => ['nullable','string','max:20'],
'semester' => ['nullable','string','max:40'],
'event_name' => ['nullable','string','max:255'],
'title' => ['nullable','string','max:255'],
'description' => ['nullable','string'],
'amount' => ['nullable','numeric','min:0'],
'invoice_id' => ['nullable','integer'],
];
}
}
@@ -6,19 +6,15 @@ use Illuminate\Foundation\Http\FormRequest;
class FinanceNotificationLogRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function authorize(): bool { return true; }
public function rules(): array
{
return [
'status' => ['nullable', 'string', 'max:40'],
'notification_type' => ['nullable', 'string', 'max:80'],
'parent_id' => ['nullable', 'integer'],
'date_from' => ['nullable', 'date'],
'date_to' => ['nullable', 'date'],
'status' => ['nullable','string','max:40'],
'notification_type' => ['nullable','string','max:80'],
'parent_id' => ['nullable','integer'],
'date_from' => ['nullable','date'],
'date_to' => ['nullable','date'],
];
}
}
@@ -2,4 +2,6 @@
namespace App\Http\Requests\Finance;
class FinancialSummaryRequest extends FinancialReportRequest {}
class FinancialSummaryRequest extends FinancialReportRequest
{
}
@@ -6,23 +6,19 @@ use Illuminate\Foundation\Http\FormRequest;
class FollowUpNoteRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function authorize(): bool { return true; }
public function rules(): array
{
return [
'invoice_id' => ['nullable', 'integer'],
'school_year' => ['nullable', 'string', 'max:20'],
'status' => ['nullable', 'string', 'max:60'],
'contact_method' => ['nullable', 'string', 'max:60'],
'promise_to_pay_date' => ['nullable', 'date'],
'promise_to_pay_amount' => ['nullable', 'numeric', 'min:0'],
'next_follow_up_date' => ['nullable', 'date'],
'escalation_level' => ['nullable', 'integer', 'min:0', 'max:10'],
'note' => ['nullable', 'string', 'max:10000'],
'invoice_id' => ['nullable','integer'],
'school_year' => ['nullable','string','max:20'],
'status' => ['nullable','string','max:60'],
'contact_method' => ['nullable','string','max:60'],
'promise_to_pay_date' => ['nullable','date'],
'promise_to_pay_amount' => ['nullable','numeric','min:0'],
'next_follow_up_date' => ['nullable','date'],
'escalation_level' => ['nullable','integer','min:0','max:10'],
'note' => ['nullable','string','max:10000'],
];
}
}
@@ -6,19 +6,15 @@ use Illuminate\Foundation\Http\FormRequest;
class InstallmentPlanRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function authorize(): bool { return true; }
public function rules(): array
{
return [
'plan_name' => ['nullable', 'string', 'max:120'],
'total_amount' => ['nullable', 'numeric', 'min:0'],
'number_of_installments' => ['required', 'integer', 'min:1', 'max:24'],
'first_due_date' => ['required', 'date'],
'interval_months' => ['nullable', 'integer', 'min:1', 'max:12'],
'plan_name' => ['nullable','string','max:120'],
'total_amount' => ['nullable','numeric','min:0'],
'number_of_installments' => ['required','integer','min:1','max:24'],
'first_due_date' => ['required','date'],
'interval_months' => ['nullable','integer','min:1','max:12'],
];
}
}
@@ -6,27 +6,23 @@ use Illuminate\Foundation\Http\FormRequest;
class ParentPaymentFollowUpRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function authorize(): bool { return true; }
public function rules(): array
{
return [
'school_year' => ['nullable', 'string', 'max:20'],
'date_from' => ['nullable', 'date'],
'date_to' => ['nullable', 'date'],
'minimum_balance' => ['nullable', 'numeric', 'min:0'],
'aging_bucket' => ['nullable', 'string', 'max:40'],
'parent_id' => ['nullable', 'integer'],
'student_id' => ['nullable', 'integer'],
'follow_up_status' => ['nullable', 'string', 'max:60'],
'last_contacted_before' => ['nullable', 'date'],
'next_follow_up_due_before' => ['nullable', 'date'],
'promise_to_pay_due_before' => ['nullable', 'date'],
'include_paid_invoices' => ['nullable', 'boolean'],
'include_inactive_students' => ['nullable', 'boolean'],
'school_year' => ['nullable','string','max:20'],
'date_from' => ['nullable','date'],
'date_to' => ['nullable','date'],
'minimum_balance' => ['nullable','numeric','min:0'],
'aging_bucket' => ['nullable','string','max:40'],
'parent_id' => ['nullable','integer'],
'student_id' => ['nullable','integer'],
'follow_up_status' => ['nullable','string','max:60'],
'last_contacted_before' => ['nullable','date'],
'next_follow_up_due_before' => ['nullable','date'],
'promise_to_pay_due_before' => ['nullable','date'],
'include_paid_invoices' => ['nullable','boolean'],
'include_inactive_students' => ['nullable','boolean'],
];
}
}
@@ -6,17 +6,13 @@ use Illuminate\Foundation\Http\FormRequest;
class PaymentAllocationRequest extends FormRequest
{
public function authorize(): bool
{
return true;
}
public function authorize(): bool { return true; }
public function rules(): array
{
return [
'installments' => ['nullable', 'array'],
'installments.*.installment_id' => ['required_with:installments', 'integer'],
'installments.*.amount' => ['required_with:installments', 'numeric', 'min:0.01'],
'installments' => ['nullable','array'],
'installments.*.installment_id' => ['required_with:installments','integer'],
'installments.*.amount' => ['required_with:installments','numeric','min:0.01'],
];
}
}