我创建了一个cron来比较库存产品的数量和规则中的最小数量。我希望每次库存数量低于规则的最小值时,它都会向我显示一个弹出窗口。
当我自动运行cron时,它不会显示任何消息或错误
这是我的代码:
@api.model
def to_do(self):
res_warehouse = self.env['stock.warehouse.orderpoint'].search([])
for product in res_warehouse:
quants = self.env['stock.quant'].search([
['product_id', '=', product.product_id.id],
['location_id', '=', product.location_id.id],
]).mapped('quantity')
if quants:
view = self.env.ref('stock_limit_alert.cron_wizard')
view_id = view and view.id or False
context = dict(self._context or {})
context['message'] = 'OK'
context['params'] = {'nom': product.location_id.id}
if quants[0] <= product.product_min_qty:
return {
'name':'Success',
'type': 'ir.actions.act_window',
'view_type': 'form',
'view_mode': 'form',
'res_model': 'cron.wizard',
'views': [(view.id,'form')],
'view_id': view.id,
'target': 'new',
'context': context
}
答案 0 :(得分:1)
这是不可能的,因为当cron运行时cron在odoo的后端运行时,它不会影响odoo的运行环境,它在另一个环境中的运行可以在日志中看到它们,但不会影响您的运行环境。 / p>