[IMP] contract_price_revision: Improve a bit performance

This commit is contained in:
Pedro M. Baeza
2019-03-07 13:39:52 +01:00
committed by Carolina Fernandez
parent e1f0962a25
commit 90a29d7243
2 changed files with 3 additions and 2 deletions

View File

@@ -9,7 +9,9 @@ class AccountAnalyticAccount(models.Model):
@api.model @api.model
def _prepare_invoice_line(self, line, invoice_id): def _prepare_invoice_line(self, line, invoice_id):
line_obj = self.env['account.invoice.line'] 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 # Line with automatic price are not taken into account
if (line.date_start and invoice.date_invoice < line.date_start) or \ if (line.date_start and invoice.date_invoice < line.date_start) or \
(line.date_end and invoice.date_invoice > line.date_end): (line.date_end and invoice.date_invoice > line.date_end):

View File

@@ -23,7 +23,6 @@
<footer> <footer>
<button string="Apply" name="action_apply" <button string="Apply" name="action_apply"
type="object" class="oe_highlight"/> type="object" class="oe_highlight"/>
or
<button string="Cancel" class="oe_link" special="cancel"/> <button string="Cancel" class="oe_link" special="cancel"/>
</footer> </footer>
</form> </form>