Skip to content

Commit

Permalink
[REF] delivery: pacakage weight tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
pimodoo committed Dec 11, 2017
1 parent 7e89865 commit 598f4f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions addons/delivery/models/stock_picking.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ def _compute_weight(self):
weight += sml.product_uom_id._compute_quantity(sml.qty_done, sml.product_id.uom_id) * sml.product_id.weight
self.weight = weight

weight = fields.Float(compute='_compute_weight')
shipping_weight = fields.Float(string='Shipping Weight', help="Can be changed during the 'put in pack' to adjust the weight of the shipping.")
weight = fields.Float(compute='_compute_weight', help="Weight computed based on the sum of the weights of the products.")
shipping_weight = fields.Float(string='Shipping Weight', help="Weight used to compute the price of the delivery (if applicable).")


class StockMoveLine(models.Model):
Expand Down

0 comments on commit 598f4f7

Please sign in to comment.