fix: Fix product import display and add payment methods

- Fix category mapping from 'Vanity Lashes'/'PMU Services' to 'Pestañas'/'Microblading'
- Update global products array when loading from API
- Add debug logging for categories and products count
- Add new payment methods: Otros, Interno, GiftCard

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Marco Gallegos
2025-09-08 19:01:09 -06:00
parent 8f22d7bc04
commit 6e97309323
2 changed files with 33 additions and 5 deletions

View File

@@ -297,6 +297,27 @@
<span>Transferencia</span>
</div>
</label>
<label class="payment-option">
<input type="radio" name="m-metodo" value="Otros" />
<div class="payment-card">
<span class="payment-icon">💼</span>
<span>Otros</span>
</div>
</label>
<label class="payment-option">
<input type="radio" name="m-metodo" value="Interno" />
<div class="payment-card">
<span class="payment-icon">🏢</span>
<span>Interno</span>
</div>
</label>
<label class="payment-option">
<input type="radio" name="m-metodo" value="GiftCard" />
<div class="payment-card">
<span class="payment-icon">🎁</span>
<span>GiftCard</span>
</div>
</label>
</div>
</div>