40 lines
1.6 KiB
Python
40 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import _, fields, models
|
|
from odoo.osv import expression
|
|
from odoo.tools.misc import format_datetime
|
|
|
|
|
|
class StockQuantityHistory(models.TransientModel):
|
|
_name = 'stock.quantity.history'
|
|
_description = 'Stock Quantity History'
|
|
|
|
inventory_datetime = fields.Datetime('Inventory at Date',
|
|
help="Choose a date to get the inventory at that date",
|
|
default=fields.Datetime.now)
|
|
|
|
def open_at_date(self):
|
|
tree_view_id = self.env.ref('stock.view_stock_product_tree').id
|
|
form_view_id = self.env.ref('stock.product_form_view_procurement_button').id
|
|
domain = [('type', '=', 'product')]
|
|
product_id = self.env.context.get('product_id', False)
|
|
product_tmpl_id = self.env.context.get('product_tmpl_id', False)
|
|
if product_id:
|
|
domain = expression.AND([domain, [('id', '=', product_id)]])
|
|
elif product_tmpl_id:
|
|
domain = expression.AND([domain, [('product_tmpl_id', '=', product_tmpl_id)]])
|
|
# We pass `to_date` in the context so that `qty_available` will be computed across
|
|
# moves until date.
|
|
action = {
|
|
'type': 'ir.actions.act_window',
|
|
'views': [(tree_view_id, 'tree'), (form_view_id, 'form')],
|
|
'view_mode': 'tree,form',
|
|
'name': _('Products'),
|
|
'res_model': 'product.product',
|
|
'domain': domain,
|
|
'context': dict(self.env.context, to_date=self.inventory_datetime),
|
|
'display_name': format_datetime(self.env, self.inventory_datetime)
|
|
}
|
|
return action
|