forked from Mapan/odoo17e
26 lines
1.2 KiB
XML
26 lines
1.2 KiB
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<odoo>
|
|
<template id="print_check">
|
|
<t t-call="web.html_container">
|
|
<t t-foreach="docs" t-as="o">
|
|
<div t-att-data-oe-model="o._name" t-att-data-oe-id="o.id" t-foreach="o._check_get_pages()" t-as="page" class="page article ph_page">
|
|
<div class="ph_check">
|
|
<div class="ph_check_date ph_check_date_month" t-esc="page['month']"/>
|
|
<div class="ph_check_date ph_check_date_day" t-esc="page['day']"/>
|
|
<div class="ph_check_date ph_check_date_year" t-esc="page['year']"/>
|
|
<div class="ph_check_partner_name">
|
|
**<t t-esc="page['partner_name']"/>**
|
|
</div>
|
|
<div class="ph_check_amount">
|
|
**<t t-esc="page['amount_no_currency']"/>**
|
|
</div>
|
|
<div class="ph_check_amount_words">
|
|
**<t t-esc="page['amount_in_word']"/>**
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</t>
|
|
</t>
|
|
</template>
|
|
</odoo>
|