flectra/addons/sale_order_dates/tests/test_requested_date.py
flectra-admin 769eafb483 [INIT] Inception of Flectra from Odoo
Flectra is Forked from Odoo v11 commit : (6135e82d73)
2018-01-16 11:45:59 +05:30

23 lines
1022 B
Python

# -*- coding: utf-8 -*-
from datetime import timedelta
from odoo.tests import common
from odoo import fields
class TestSaleOrderDates(common.TransactionCase):
def test_sale_order_requested_date(self):
# In order to test the Requested Date feature in Sales Orders in Odoo,
# I copy a demo Sales Order with Requested Date on 2010-07-12
new_order = self.env.ref('sale.sale_order_6').copy({'requested_date': '2010-07-12'})
# I confirm the Sales Order.
new_order.action_confirm()
# I verify that the Procurements and Stock Moves have been generated with the correct date
security_delay = timedelta(days=new_order.company_id.security_lead)
requested_date = fields.Datetime.from_string(new_order.requested_date)
right_date = fields.Datetime.to_string(requested_date - security_delay)
for line in new_order.order_line:
self.assertEqual(line.move_ids[0].date_expected, right_date, "The expected date for the Stock Move is wrong")