# F-085 — Implementer evidence ## What was implemented `/tax-rates` TIPO column is now inline-editable. Server validates the value against the same enum used by pricing. ### Files changed - `project/src/modules/pricing/api/pricing.routes.ts` - PATCH `/admin/tax-rates/:id` body schema now accepts `appliesTo: z.enum(['general','reduced','super-reduced']).optional()`. - Added an UPDATE branch `applies_to = $N` mirroring the existing branches. - `project/apps/admin/src/app/(dashboard)/tax-rates/page.tsx` - New state: `tipoEditing`, `savingTipo`. - New handler: `saveTipo(id, newTipo)` → `taxApi.update(id, { appliesTo })` → in-place row update. - TIPO cell: `