changeset 8eb35dafff08 in modules/stock:default
details: https://hg.tryton.org/modules/stock?cmd=changeset;node=8eb35dafff08
description:
        Fix wrong field name from applying total_quantity rename

        issue7871
diffstat:

 inventory.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r 59528e169c14 -r 8eb35dafff08 inventory.py
--- a/inventory.py      Tue Dec 04 12:31:31 2018 +0100
+++ b/inventory.py      Tue Dec 04 13:08:49 2018 +0100
@@ -614,7 +614,7 @@
     product = fields.Many2One('product.product', "Product", readonly=True)
     uom = fields.Many2One('product.uom', "UOM", readonly=True,
         help="The unit in which the quantities are specified.")
-    quantity_resulting = fields.Float(
+    total_quantity = fields.Float(
         "Total Quantity", digits=(16, Eval('unit_digits', 2)),
         readonly=True, depends=['unit_digits'],
         help="The total amount of the line counted so far.")

Reply via email to