changeset 3b9755821862 in modules/purchase_shipment_cost:default
details: 
https://hg.tryton.org/modules/purchase_shipment_cost?cmd=changeset;node=3b9755821862
description:
        Do not refer to activated modules as installed

        issue9395
        review311721004
diffstat:

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

diffs (21 lines):

diff -r f464a0cf2827 -r 3b9755821862 stock.py
--- a/stock.py  Thu Jul 09 10:21:06 2020 +0100
+++ b/stock.py  Thu Jul 09 10:33:42 2020 +0100
@@ -141,7 +141,7 @@
     unit_shipment_cost = fields.Numeric('Unit Shipment Cost',
         digits=price_digits, readonly=True)
 
-    # Split the shipment cost if account_stock_continental is installed
+    # Split the shipment cost if account_stock_continental is activated
     def _get_account_stock_move_lines(self, type_):
         pool = Pool()
         AccountMoveLine = pool.get('account.move.line')
@@ -171,7 +171,7 @@
                 raise AssertionError('missing account_stock_supplier')
         return move_lines
 
-    # Remove shipment cost if account_stock_anglo_saxon is installed
+    # Remove shipment cost if account_stock_anglo_saxon is activated
     @classmethod
     def _get_anglo_saxon_move(cls, moves, quantity, type_):
         pool = Pool()

Reply via email to