หน้านี้สกัดจาก PriceEstimationService.cs, QuoteOrchestrator.cs และ Catalog validators
Search flow
Branch validation
| Rule | Error |
|---|
Pickup branch code ต้องพบใน BranchCarProSync | Pickup branch with code X not found |
Pickup branch ต้อง Active | Pickup branch with code X is not active |
Return branch code ต้องพบใน BranchCarProSync | Return branch with code X not found |
Return branch ต้อง Active | Return branch with code X is not active |
CarPro mapping
| Local field | Source |
|---|
| Car group | CarGroupPrice.CarGrop จาก CarPro |
| Total price | CarGroupPrice.TotalAmount |
| Price per day | TotalAmount / SoldDays |
| Availability | CarGroupPrice.CarAvailable |
| Display name/images/luggage/fuel/transmission | Local Cars, CarImages, CarCarProSync, Fuel |
ถ้า CarPro ตอบ Success != y และ VarianceReason มีคำว่า invalid cdp:
- Catalog เรียก CarPro ใหม่โดยไม่ส่ง promotion code
- map ผลลัพธ์ตามปกติ
- ตั้ง
IsInvalidPromotionCode = true
- ตัด
PromotionCode ออกจาก car item
ถ้า fallback ยัง fail จะ throw Price estimation failed: {reason}
Client-side filtering หลัง CarPro
| Filter | Logic |
|---|
CarGroup | ต้องอยู่ใน list ที่ request ส่งมา |
MinPrice / MaxPrice | เทียบกับ pricePerDay |
MinPricePerDay | กรองหลัง map result |
TransmissionType | เทียบ ModelTransmissionDesc |
FuelType | เทียบ ModelFuelDesc |
Price quote orchestration
POST /public/price/quote รวม 4 ส่วน:
| ส่วน | Service/Source |
|---|
| Car price | PriceEstimationService.GetPriceEstimationAsync |
| Add-on price | AddOnService.GetActiveAddOnsWithPricingAsync |
| Fuel service | หา car จาก car group แล้วดึง fuel |
| One-way rental | OneWayRentalService.GetOnWayRentalPriceAsync |
Validator สำคัญ
| Request | Rule |
|---|
| Price estimation | PickupBranchCode และ ReturnBranchCode ต้องเป็นค่าบวก, date dd/MM/yyyy, time HH:mm, return ต้องหลัง pickup |
| Promotion update | name required, image key required, description max 200, show flags not null |
| OWR create/update | name required, pickup required, return locations อย่างน้อย 1, min days ต้องเป็นค่าบวก, max days ต้องมากกว่า min days, price ต้องไม่ติดลบ |
| Signed URL | ImageKey required, ExpiryMinutes 2..1440 |