changeset a1147e23a6f6 in modules/production:default
details:
https://hg.tryton.org/modules/production?cmd=changeset;node=a1147e23a6f6
description:
Fix typo in Production Output field's label
diffstat:
stock.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r c990582ffc6e -r a1147e23a6f6 stock.py
--- a/stock.py Mon Oct 12 19:32:02 2020 +0200
+++ b/stock.py Thu Oct 15 00:21:20 2020 +0200
@@ -29,7 +29,7 @@
help="Where the production components are picked from.\n"
"Leave empty to use the warehouse storage location.")
production_output_location = fields.Many2One(
- 'stock.location', "Proudction Output",
+ 'stock.location', "Production Output",
states={
'invisible': Eval('type') != 'warehouse',
},