[ADD] stock_picking_comment_template

This commit is contained in:
emagdalena
2019-05-23 13:26:24 +02:00
committed by Roger
parent 0854bf56ed
commit 8bac8d1d4b
17 changed files with 748 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
# Copyright 2019 C2i Change 2 improve - Eduardo Magdalena <emagdalena@c2i.es>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from . import test_stock_picking_report

View File

@@ -0,0 +1,55 @@
# Copyright 2019 C2i Change 2 improve - Eduardo Magdalena <emagdalena@c2i.es>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo.tests.common import TransactionCase
class TestStockPickingReport(TransactionCase):
at_install = False
post_install = True
def setUp(self):
super(TestStockPickingReport, self).setUp()
self.base_comment_model = self.env['base.comment.template']
self.before_comment = self._create_comment('before_lines')
self.after_comment = self._create_comment('after_lines')
self.partner = self.env['res.partner'].create({
'name': 'Partner Test'
})
self.picking_model = self.env['stock.picking']
self.picking = self.picking_model.create({
'partner_id': self.partner.id,
'location_id': self.ref('stock.stock_location_stock'),
'location_dest_id': self.ref('stock.stock_location_customers'),
'picking_type_id': self.ref('stock.picking_type_out'),
'comment_template1_id': self.before_comment.id,
'comment_template2_id': self.after_comment.id
})
self.picking._set_note1()
self.picking._set_note2()
def _create_comment(self, position):
return self.base_comment_model.create({
'name': 'Comment ' + position,
'position': position,
'text': 'Text ' + position
})
def test_comments_in_picking(self):
res = self.env['ir.actions.report']._get_report_from_name(
'stock.report_picking'
).render_qweb_html(self.picking.ids)
self.assertRegexpMatches(str(res[0]), self.before_comment.text)
self.assertRegexpMatches(str(res[0]), self.after_comment.text)
def test_onchange_partner_id(self):
self.partner.comment_template_id = self.after_comment.id
new_picking = self.env['stock.picking'].new({
'partner_id': self.partner.id,
})
new_picking._onchange_partner_id()
self.assertEqual(new_picking.comment_template2_id, self.after_comment)
self.partner.comment_template_id = self.before_comment.id
new_picking._onchange_partner_id()
self.assertEqual(new_picking.comment_template1_id, self.before_comment)