Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website_sale_installment_plans/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Website Sale Installment Plan",
"category": "Website/Website",
"version": "18.0.1.0.0",
"version": "18.0.1.1.0",
"author": "ADHOC SA",
"website": "www.adhoc.com.ar",
"license": "AGPL-3",
Expand Down
4 changes: 2 additions & 2 deletions website_sale_installment_plans/views/website_templates.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<data>
<template id="product_page_card_installment_plan" inherit_id="website_sale.product_price">
<xpath expr="//div[@id='product_unavailable']" position="before">
<div>
<div class="installment-plans">
<t t-foreach="combination_info.get('installment_plans', [])" t-as="installment">
<p style="font-size: 12px; color: #666; margin: 5px 0;">
<i class="fa fa-credit-card" aria-hidden="true" style="color:#000000;font-size:14px;margin-right:5px;"/>
Expand All @@ -20,7 +20,7 @@

<template id="product_template_products_item_installment_plan" inherit_id="website_sale.products_item">
<xpath expr="//span[@t-esc='website.currency_id.name']" position="after">
<div>
<div class="installment-plans">
<t t-set="cuotas" t-value="product._get_card_installments_for_shop(template_price_vals.get('price_reduce', []))"/>
<t t-foreach="cuotas" t-as="installment">
<p style="font-size: 12px; color: #666; margin: 5px 0;">
Expand Down