نسخة كاملة من مستودع سيرو عند ecfe7568 لتكون أساس تطبيق «انطلق». نُسخ المتعقَّب في git فقط (12,509 ملفاً / 302 م.ب) بـ git archive، لا `cp -r` — فاستُثنيت تلقائياً مخلفات البناء (build · node_modules · .dart_tool · .gradle · Pods ≈ 10.7 غ.ب) وكل ما يستثنيه .gitignore. هذا الكوميت **بلا أي تعديل عمداً** حتى يكون كل ما يليه فرقاً مقروءاً مقابل سيرو الأصلي. سيرو نفسه لم يُمسّ. ⚠️ لا يبني بعد: `.env` و`lib/env/env.g.dart` غير متعقَّبين في سيرو (وهذا صحيح — أسرار لكل مستأجر). كل تطبيق فلاتر هنا يحتاج .env خاصاً بانطلق ثم توليد env.g.dart عبر build_runner. لا تُنسخ أسرار سيرو. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
64 lines
2.0 KiB
PHP
64 lines
2.0 KiB
PHP
<?php
|
|
require_once __DIR__ . '/../connect.php';
|
|
|
|
// استرجاع وتصفية البيانات
|
|
$driverId = filterRequest("driverId");
|
|
$carPlate = $encryptionHelper->encryptData(filterRequest("carPlate"));
|
|
$color = filterRequest("color");
|
|
$color_hex = filterRequest("color_hex");
|
|
$make = filterRequest("make");
|
|
$model = filterRequest("model");
|
|
$expiration_date = filterRequest("expiration_date");
|
|
$owner = $encryptionHelper->encryptData(filterRequest("owner"));
|
|
$year = filterRequest("year");
|
|
$employee = filterRequest("employee");
|
|
|
|
// تحديث CarRegistration
|
|
$sqlUpdate = "
|
|
UPDATE `CarRegistration`
|
|
SET
|
|
`car_plate` = :carPlate,
|
|
`color` = :color,
|
|
`color_hex` = :color_hex,
|
|
`make` = :make,
|
|
`model` = :model,
|
|
`year` = :year,
|
|
`expiration_date` = :expiration_date,
|
|
`owner` = :owner
|
|
WHERE `driverID` = :driverId";
|
|
|
|
$stmtUpdate = $con->prepare($sqlUpdate);
|
|
$stmtUpdate->execute([
|
|
':carPlate' => $carPlate,
|
|
':color' => $color,
|
|
':color_hex' => $color_hex,
|
|
':make' => $make,
|
|
':model' => $model,
|
|
':year' => $year,
|
|
':expiration_date' => $expiration_date,
|
|
':owner' => $owner,
|
|
':driverId' => $driverId
|
|
]);
|
|
|
|
if ($stmtUpdate->rowCount() > 0) {
|
|
// تسجيل التعديل
|
|
$sqlInsert = "INSERT INTO `carPlateEdit`
|
|
(`driverId`, `carPlate`, `color`, `make`, `model`, `expiration_date`, `owner`, `year`, `employee`, `isEdit`)
|
|
VALUES (:driverId, :carPlate, :color, :make, :model, :expiration_date, :owner, :year, :employee, 1)";
|
|
$stmtInsert = $con->prepare($sqlInsert);
|
|
$stmtInsert->execute([
|
|
':driverId' => $driverId,
|
|
':carPlate' => $carPlate,
|
|
':color' => $color,
|
|
':make' => $make,
|
|
':model' => $model,
|
|
':expiration_date' => $expiration_date,
|
|
':owner' => $owner,
|
|
':year' => $year,
|
|
':employee' => $employee
|
|
]);
|
|
|
|
jsonSuccess(null, "Car data updated and edit logged successfully.");
|
|
} else {
|
|
jsonError("No changes were made to the car data.");
|
|
} |