feat(F-192): completed feature
This commit is contained in:
29
work/artifacts/F-192/implementer.md
Normal file
29
work/artifacts/F-192/implementer.md
Normal file
@@ -0,0 +1,29 @@
|
||||
# F-192 — Implementer Evidence
|
||||
|
||||
## Feature
|
||||
Simplify storefront net price VAT label.
|
||||
|
||||
## Change
|
||||
|
||||
### `project/frontend/src/app/products/[slug]/page.tsx` (line 152)
|
||||
|
||||
Changed the net price label from:
|
||||
```
|
||||
{formatPrice(netCents)} sin IVA · IVA {vatPercent}%
|
||||
```
|
||||
To:
|
||||
```
|
||||
{formatPrice(netCents)} sin IVA ({vatPercent}%)
|
||||
```
|
||||
|
||||
Removes the separator " · " and the duplicate "IVA" word as specified.
|
||||
|
||||
Only one occurrence found in the entire codebase (frontend + storefront).
|
||||
|
||||
## Verification
|
||||
|
||||
| Check | Result |
|
||||
|-------|--------|
|
||||
| `npx tsc --noEmit` (frontend) | 0 errors |
|
||||
| `npm test` (backend) | 269 passed, 96 skipped |
|
||||
| `./scripts/verify.sh` | OK |
|
||||
Reference in New Issue
Block a user