[IMP] account_*_stock_report_non_billed: Allow use dates as a range

By doing this change we can use dates (threshold and check) as a range
to discart moves and invoices that are out of this range.

TT40443
pull/1184/head
CarlosRoca13 2022-11-14 11:09:52 +01:00 committed by Pedro M. Baeza
parent c1d5cb3750
commit fc760e4786
3 changed files with 29 additions and 0 deletions

View File

@ -31,6 +31,12 @@ class StockMove(models.Model):
)
# Check when grouping different moves in an invoice line
moves = invoice_lines.mapped("move_line_ids")
date_start = self.env.context.get("moves_date_start")
date_end = self.env.context.get("moves_date_end")
if date_start and date_end:
moves = moves.filtered(
lambda ml: ml.date_done >= date_start and ml.date_done <= date_end
)
total_qty = moves.get_total_devolution_moves()
if qty_invoiced != total_qty:
invoiced = 0.0

View File

@ -1,5 +1,6 @@
# Copyright 2022 Tecnativa - Carlos Roca
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html).
from dateutil.relativedelta import relativedelta
from odoo import fields
from odoo.tests import Form, common
@ -351,3 +352,24 @@ class TestAccountPurchaseStockReportNonBilled(common.SavepointCase):
self.assertNotIn(move.id, domain_ids)
for move in picking_return_return.move_lines:
self.assertNotIn(move.id, domain_ids)
def test_11_report_move_full_invoiced_out_of_date(self):
self.po.button_confirm()
# Validate shipment
picking = self.po.picking_ids[0]
# Process pickings
picking.action_confirm()
picking.move_lines.quantity_done = 1.0
picking.button_validate()
# Emulate prepaying invoice
inv_action = self.po.action_view_invoice()
inv_form = Form(self.env["account.move"].with_context(**inv_action["context"]))
inv_form.date = fields.Date.today() - relativedelta(days=5)
inv_form.save()
wiz = self.env["account.sale.stock.report.non.billed.wiz"].create(
{"date_check": fields.Date.today(), "interval_restrict_invoices": True}
)
action = wiz.open_at_date()
domain_ids = action["domain"][0][2]
for move in picking.move_lines:
self.assertIn(move.id, domain_ids)

View File

@ -14,6 +14,7 @@ class AccountSaleStockReportNonBilledWiz(models.TransientModel):
[
domain,
[
("date_done", ">=", self.stock_move_non_billed_threshold),
("date_done", "<=", self.date_check),
("purchase_line_id", "!=", False),
("state", "=", "done"),