add lock_stock_move funtion to overwrite

This commit is contained in:
?ngel ?lvarez 2018-11-08 08:48:28 +01:00
parent ea1cd3ada8
commit 385b454b32
2 changed files with 25 additions and 0 deletions

24
lock_stock_move.diff Normal file
View File

@ -0,0 +1,24 @@
diff -r c1860f118efd move.py
--- a/trytond/trytond/modules/stock/move.py Wed Nov 07 12:14:26 2018 +0100
+++ b/trytond/trytond/modules/stock/move.py Wed Nov 07 12:18:14 2018 +0100
@@ -823,6 +823,10 @@
return to_pick
return to_pick
+ @staticmethod
+ def lock_stock_move():
+ return True
+
@classmethod
def assign_try(cls, moves, with_childs=True, grouping=('product',)):
'''
@@ -878,7 +882,8 @@
with connection.cursor() as cursor:
cursor.execute(*query)
else:
- database.lock(connection, cls._table)
+ if cls.lock_stock_move():
+ database.lock(connection, cls._table)
with Transaction().set_context(
stock_date_end=stock_date_end,

1
series
View File

@ -21,3 +21,4 @@ issue240_631.diff # [stock_lot] stock_by_locations get all locations with that l
issue10467.diff # stock_lot: add lot to grouping if lot it's required on product
issue53451002_1_10001.diff #stock: Allow configuring which quantity is grouped in compute_quantities_query() needed by stock_number_of_packages
issue7826.diff # [stock_package] Total packages moves are all
lock_stock_move.diff #[stock] Function to overwrite if lock table or not