Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ NEW ir.model.constraint: account.constraint_account_bank_statement_line_main_idx
NEW ir.model.constraint: account.constraint_account_bank_statement_line_orphan_idx
NEW ir.model.constraint: account.constraint_account_bank_statement_line_unreconciled_idx
NEW ir.model.constraint: account.constraint_account_lock_exception_company_id_end_datetime_idx
NEW ir.model.constraint: account.constraint_account_move_account_move_sanitize_payment_ref_idx
NEW ir.model.constraint: account.constraint_account_move_checked_idx
NEW ir.model.constraint: account.constraint_account_move_duplicate_bills_idx
NEW ir.model.constraint: account.constraint_account_move_journal_id_company_id_idx
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ new model website.technical.page [module website]
# Found in other module: 143
# Found with different type: 32
# In obsolete models: 207
# New columns: 1800
# New columns: 1805
# Not matched: 1002
---XML records in module 'general'---
---Probably obsolete module l10n_in_ewaybill_port---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---Models in module 'hr_timesheet'---
new model account.analytic.line.calendar.employee
---Fields in module 'hr_timesheet'---
hr_timesheet / account.analytic.line / project_id (many2one) : not a function anymore
hr_timesheet / account.analytic.line.calendar.employee / active (boolean) : NEW hasdefault: default
hr_timesheet / account.analytic.line.calendar.employee / checked (boolean) : NEW hasdefault: default
hr_timesheet / account.analytic.line.calendar.employee / employee_id (many2one) : NEW relation: hr.employee
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---Models in module 'l10n_lk_invoice'---
---Fields in module 'l10n_lk_invoice'---
l10n_lk_invoice / res.partner / l10n_lk_vat_registered (boolean): NEW hasdefault: compute
---XML records in module 'l10n_lk_invoice'---
NEW ir.actions.report: l10n_lk_invoice.action_report_commercial_invoice
NEW ir.ui.view: l10n_lk_invoice.report_commercial_invoice
NEW ir.ui.view: l10n_lk_invoice.report_invoice
NEW ir.ui.view: l10n_lk_invoice.report_invoice_document
NEW ir.ui.view: l10n_lk_invoice.view_company_form_l10n_lk_vat_registered
NEW ir.ui.view: l10n_lk_invoice.view_partner_form_l10n_lk_vat_registered
19 changes: 14 additions & 5 deletions openupgrade_scripts/scripts/sale/19.0.1.2/noupdate_changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,23 @@
<record id="email_template_edi_sale" model="mail.template">
<field name="body_html" type="html">
<div style="margin: 0px; padding: 0px;">
<p style="margin: 0px; padding: 0px; font-size: 13px;"><t t-set="doc_name" t-value="'quotation' if object.state in ('draft', 'sent') else 'order'"/>
<p style="margin: 0px; padding: 0px; font-size: 13px;">
Hello,
<br/><br/>
Your <t t-out="doc_name or ''">quotation</t> <span style="font-weight: bold;" t-out="object.name or ''"/>
<t t-if="object.origin">
(with reference: <t t-out="object.origin or ''">S00052</t> )
<t t-if="object.state in ('draft', 'sent')">
Your quotation <span style="font-weight: bold;" t-out="object.name or ''"/>
<t t-if="object.origin">
(with reference: <t t-out="object.origin or ''">S00052</t> )
</t>
amounting in <span style="font-weight: bold;" t-out="format_amount(object.amount_total, object.currency_id) or ''">$ 10.00</span> is ready for review.
</t>
<t t-else="">
Your order <span style="font-weight: bold;" t-out="object.name or ''"/>
<t t-if="object.origin">
(with reference: <t t-out="object.origin or ''">S00052</t> )
</t>
amounting in <span style="font-weight: bold;" t-out="format_amount(object.amount_total, object.currency_id) or ''">$ 10.00</span> is ready for review.
</t>
amounting in <span style="font-weight: bold;" t-out="format_amount(object.amount_total, object.currency_id) or ''">$ 10.00</span> is ready for review.
<br/>
<t t-set="documents" t-value="object._get_product_documents()"/>
<t t-if="documents"><br/><t t-if="len(documents)&gt;1">
Expand Down