-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIG] l10n_pt_account_invoicexpress: Migration to 15.0
- Loading branch information
1 parent
06a95b7
commit 768c081
Showing
13 changed files
with
73 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,31 @@ | ||
<odoo noupdate="1"> | ||
<record id="email_template_invoice" model="mail.template"> | ||
<field name="name">InvoiceXpress: Send Invoice by Email</field> | ||
<field name="model_id" ref="account.model_account_move" /> | ||
<field name="subject">Sua Fatura ${object.name | safe}</field> | ||
<field name="email_to">${object.partner_id.email | safe}</field> | ||
<field name="email_cc">${object.env.user.email | safe}</field> | ||
<field name="body_html" type="html"> | ||
<p> | ||
Olá, | ||
<br /> | ||
Enviamos em anexo a fatura ${object.name | safe} | ||
% if object.ref: | ||
relativa à sua encomenda ${object.ref | safe} | ||
% endif | ||
. | ||
<br /><br /> | ||
Obrigado | ||
% if user.signature: | ||
<br /> | ||
${user.signature | safe} | ||
% endif | ||
</p> | ||
</field> | ||
<field name="lang">${object.partner_id.lang}</field> | ||
<field name="auto_delete" eval="True" /> | ||
</record> | ||
<odoo> | ||
<data noupdate="1"> | ||
<record id="email_template_invoice" model="mail.template"> | ||
<field name="name">InvoiceXpress: Send Invoice by Email</field> | ||
<field name="model_id" ref="account.model_account_move"/> | ||
<field name="subject">Sua Fatura ${object.name | safe}</field> | ||
<field name="email_to">${object.partner_id.email | safe}</field> | ||
<field name="email_cc">${object.env.user.email | safe}</field> | ||
<field name="body_html" type="html"> | ||
<p> | ||
Olá, | ||
<br/> | ||
Enviamos em anexo a fatura ${object.name | safe} | ||
% if object.ref: | ||
relativa à sua encomenda ${object.ref | safe} | ||
% endif | ||
. | ||
<br/> | ||
<br/> | ||
Obrigado | ||
% if user.signature: | ||
<br/> | ||
${user.signature | safe} | ||
% endif | ||
</p> | ||
</field> | ||
<field name="lang">${object.partner_id.lang}</field> | ||
<field name="auto_delete" eval="True"/> | ||
</record> | ||
</data> | ||
</odoo> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 14.0\n" | ||
"Project-Id-Version: Odoo Server 15.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2021-11-18 20:36+0000\n" | ||
"Last-Translator: Daniel Reis <[email protected]>\n" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
setup/l10n_pt_account_invoicexpress/odoo/addons/l10n_pt_account_invoicexpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../../l10n_pt_account_invoicexpress |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import setuptools | ||
|
||
setuptools.setup( | ||
setup_requires=['setuptools-odoo'], | ||
odoo_addon=True, | ||
) |