[IMP] stock_picking_comment_template: Change field label to fix travis warning

This commit is contained in:
Sergio Teruel
2019-12-04 17:38:50 +01:00
committed by Roger
parent 56ab40f5f3
commit a209a1586c
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ msgstr ""
#. module: stock_picking_comment_template
#: model:ir.model.fields,field_description:stock_picking_comment_template.field_res_partner__comment_template_id
#: model:ir.model.fields,field_description:stock_picking_comment_template.field_res_users__comment_template_id
msgid "Conditions template"
msgid "Picking conditions template"
msgstr ""
#. module: stock_picking_comment_template

View File

@@ -9,5 +9,5 @@ class ResPartner(models.Model):
comment_template_id = fields.Many2one(
comodel_name='base.comment.template',
string='Conditions template',
string='Picking conditions template',
)