mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
[IMP] contract_price_revision: Improve a bit performance
This commit is contained in:
@@ -9,7 +9,9 @@ class AccountAnalyticAccount(models.Model):
|
||||
@api.model
|
||||
def _prepare_invoice_line(self, line, invoice_id):
|
||||
line_obj = self.env['account.invoice.line']
|
||||
invoice = self.env['account.invoice'].browse(invoice_id)
|
||||
invoice = self.env['account.invoice'].browse(
|
||||
invoice_id, prefetch=self._prefetch,
|
||||
)
|
||||
# Line with automatic price are not taken into account
|
||||
if (line.date_start and invoice.date_invoice < line.date_start) or \
|
||||
(line.date_end and invoice.date_invoice > line.date_end):
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
<footer>
|
||||
<button string="Apply" name="action_apply"
|
||||
type="object" class="oe_highlight"/>
|
||||
or
|
||||
<button string="Cancel" class="oe_link" special="cancel"/>
|
||||
</footer>
|
||||
</form>
|
||||
|
||||
Reference in New Issue
Block a user