gn_donations v14.0.0.1.4 add fiscal receipt template
This commit is contained in:
parent
a5f111d9ca
commit
976e6791b5
@ -8,16 +8,17 @@ Addons for Odoo 14.
|
||||
| Name | Version | Description |
|
||||
|-------------------------|--------------|----------------------------------------------------------|
|
||||
| gn_discount | 14.0.0.1.3 | display the total before discount and the discount amount on sales orders and invoices |
|
||||
| gn_donations | 14.0.0.1.3 | Cerfa 11580 for donations and in-kind donations |
|
||||
| gn_donations | 14.0.0.1.4 | Cerfa 11580 for donations and in-kind donations |
|
||||
| gn_mail | 14.0.0.0.1 | Mail client |
|
||||
| gn_users | 14.0.0.0.1 | Users management with keycloak |
|
||||
|
||||
|
||||
## Changelog
|
||||
|
||||
- gn_donations | 14.0.0.1.4 | Add template for fiscal receipt
|
||||
- gn_users | 14.0.0.0.1 | Add gn_users module for user/employee management and link with keycloak SSO
|
||||
- gn_donation | 14.0.0.1.3 | Add table in donation thanks report
|
||||
- gn_donation | 14.0.0.1.2 | Add description to donation lines
|
||||
- gn_donations | 14.0.0.1.3 | Add table in donation thanks report
|
||||
- gn_donations | 14.0.0.1.2 | Add description to donation lines
|
||||
|
||||
## ToDo
|
||||
|
||||
|
||||
@ -12,7 +12,8 @@
|
||||
'views/donation_thanks_report.xml',
|
||||
'views/internal_layout.xml',
|
||||
'views/donation_thanks_report.xml',
|
||||
'views/donation.xml'
|
||||
'views/donation.xml',
|
||||
'views/donation_fiscal_receipt.xml'
|
||||
],
|
||||
'translate': True,
|
||||
'installable': True,
|
||||
|
||||
@ -52,7 +52,7 @@
|
||||
</div>
|
||||
|
||||
<t t-set="street_parts" t-value="o.company_id.street.split(None, 1)"/>
|
||||
<t t-set="street_part1" t-value="street_parts[0]"/>
|
||||
<t t-set="street_part1" t-value="street_parts[0] if len(street_parts) > 0 else ''"/>
|
||||
<t t-set="street_part2" t-value="street_parts[1] if len(street_parts) > 1 else ''"/>
|
||||
|
||||
<div class="row">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user