Spaces:
Running
Running
fix: create/update avon sem cupom
Browse files- template_system.py +6 -1
template_system.py
CHANGED
|
@@ -434,11 +434,16 @@ class TemplateNatura(TemplateC):
|
|
| 434 |
|
| 435 |
def __init__(self, template_path: str = None):
|
| 436 |
super().__init__("assets/template_c_natura.png")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 437 |
|
| 438 |
# Register additional templates
|
| 439 |
TemplateRegistry.register('lidi_promo', LidiPromoTemplate)
|
| 440 |
TemplateRegistry.register('natura', TemplateNatura)
|
| 441 |
-
TemplateRegistry.register('avon',
|
| 442 |
TemplateRegistry.register('outros', TemplateOutros)
|
| 443 |
TemplateRegistry.register('outros_sem_cupom', TemplateOutrosSemCupom)
|
| 444 |
TemplateRegistry.register('natura_cliente', NaturaClienteTemplate)
|
|
|
|
| 434 |
|
| 435 |
def __init__(self, template_path: str = None):
|
| 436 |
super().__init__("assets/template_c_natura.png")
|
| 437 |
+
|
| 438 |
+
class TemplateAvonSemCupom(TemplateC):
|
| 439 |
+
|
| 440 |
+
def __init__(self, template_path: str = None):
|
| 441 |
+
super().__init__("assets/template_b_avon.png")
|
| 442 |
|
| 443 |
# Register additional templates
|
| 444 |
TemplateRegistry.register('lidi_promo', LidiPromoTemplate)
|
| 445 |
TemplateRegistry.register('natura', TemplateNatura)
|
| 446 |
+
TemplateRegistry.register('avon', TemplateAvonSemCupom)
|
| 447 |
TemplateRegistry.register('outros', TemplateOutros)
|
| 448 |
TemplateRegistry.register('outros_sem_cupom', TemplateOutrosSemCupom)
|
| 449 |
TemplateRegistry.register('natura_cliente', NaturaClienteTemplate)
|