fix(plan): stop the segment replace from destroying segments when it rejects
PUT /service-item/{uuid}/segments deletes and rewrites. deleteForService issues
a DQL DELETE that runs immediately, and three validations — duration, occupancy
and constraints — only ran afterwards, while building the new rows. A rejected
request therefore deleted the service's segments and saved nothing, and the
service silently fell back to "one continuous block": different duration,
different resources, on every future appointment, with a 422 as the only clue.
Validation now happens before the delete, and the delete plus rewrite are one
transaction. A test pins it: an unknown constraint is refused and the previous
two segments are still there afterwards.
While in there, the caps the task asked for and never got: 20 segments and 10
requirements per segment. The availability engine evaluates resource
combinations per segment per requirement, so the numbers protect the search
rather than the table. They are generous — no real service reaches them, but a
bad payload does.
The plan response now carries patient_facing_minutes. "Set aside 90 minutes"
is wrong for an appointment where 40 of them are waiting for anaesthetic to
take effect, and computing it once in the backend stops each client summing it
differently.
A condition on a fact the request never supplies still evaluates to false —
that part was right — but it now logs a warning naming the policy and listing
the facts that were available. A rule that hits that line every time is
effectively switched off, and nothing said so.
A new policy version can no longer start in the past: yesterday's appointments
were priced under the previous text, and their price trace points at the
version. Backdating makes that trace describe a rule that did not exist.
require_resource errors name the policy that demanded the role. Knowing a room
is missing does not tell an operator which of ten active rules to look at.
Six operators now have a test each. An operator that compares wrongly produces
a rule that always matches or never does, and neither raises anything.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -117,6 +117,23 @@
|
||||
**۳. قید جنسیت وقتی جنسیت بیمار نامشخص است نادیده گرفته نمیشود.** ۴۲۲ میدهد، چون رد
|
||||
کردن بیصدا یعنی بیمار به منبعی میرسد که قرار نبود.
|
||||
|
||||
## سقفها و ایمنی جایگزینی
|
||||
|
||||
| قید | مقدار | چرا |
|
||||
|---|---|---|
|
||||
| مجموع مدت | ۴۸۰ دقیقه | حفاظت از جستجوی وقت |
|
||||
| تعداد بخش | ۲۰ | موتور برای هر بخش × هر نیازمندی ترکیب منابع را میسنجد |
|
||||
| نیازمندی هر بخش | ۱۰ | همان |
|
||||
|
||||
`PUT .../segments` **حذفکن-و-بنویس** است. همهٔ اعتبارسنجیها (قید ناشناخته، نوع اشغال،
|
||||
مدت، سقفها) **پیش از حذف** انجام میشوند و خودِ حذف و نوشتن در یک تراکنشاند: خطای بعد
|
||||
از حذف یعنی سرویس بدون بخش میماند و نوبتدهیاش بیصدا به «یک بخش پیوسته» برمیگردد —
|
||||
که مدت و منابع همهٔ نوبتهای بعدی را عوض میکند.
|
||||
|
||||
پاسخ `preview` علاوه بر `total_minutes`، فیلد `patient_facing_minutes` هم دارد: مدتی که
|
||||
بیمار واقعاً روی صندلی است. نوبت نودقیقهای که چهل دقیقهاش انتظار اثر بیحسی است، «نود
|
||||
دقیقه وقت بگذارید» نیست — و محاسبه یکجا در بکاند است تا هر کلاینت خودش جمع نزند.
|
||||
|
||||
## ادغام بخشها
|
||||
|
||||
برنامه از الگوهای **سرویس اصلی بهعلاوهٔ آیتمهای انتخابشده** ساخته میشود. تا پیش از
|
||||
|
||||
@@ -409,3 +409,15 @@ POST /api/v1/policy
|
||||
| `/admin/policies` | فهرست قوانین |
|
||||
| `/admin/policies/new` | ساخت با الگو یا حالت پیشرفته |
|
||||
| `/admin/policies/{uuid}/simulate` | گزارش آزمایش + دکمهٔ فعالسازی |
|
||||
|
||||
## اعتبار نسخهٔ تازه
|
||||
|
||||
`POST /policy/{uuid}/version` مقدار `valid_from` در گذشته را **رد میکند** (۴۲۲). نوبتهای
|
||||
گذشته با متن قبلی حساب شدهاند و ردپای قیمتشان به نسخه اشاره میکند؛ اعتبارِ عقبرونده
|
||||
یعنی آن ارجاع قانونی را توصیف کند که آن روز وجود نداشت. روی نسخهٔ نخست آزاد است.
|
||||
|
||||
## فیلدِ غایب در شرط
|
||||
|
||||
شرطی که فیلدش در حقایق درخواست نباشد **رد** میشود (نه نادیده گرفته) و یک `warning` با
|
||||
نام قانون و فهرست حقایق موجود لاگ میشود. رد کردنِ خاموش یعنی قانونی که هر بار به این خط
|
||||
میرسد عملاً خاموش است و کسی خبردار نمیشود.
|
||||
|
||||
Reference in New Issue
Block a user