changeset d1d89af659d3 in modules/production_outsourcing:default
details: 
https://hg.tryton.org/modules/production_outsourcing?cmd=changeset&node=d1d89af659d3
description:
        Use declarative index definition for ModelSQL

        issue5757
        review361251002
diffstat:

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

diffs (12 lines):

diff -r 18f2adeded3d -r d1d89af659d3 purchase.py
--- a/purchase.py       Mon May 02 17:54:10 2022 +0200
+++ b/purchase.py       Tue Oct 11 00:44:50 2022 +0200
@@ -9,7 +9,7 @@
     __name__ = 'purchase.line'
 
     production = fields.Many2One(
-        'production', "Production", select=True, ondelete='RESTRICT',
+        'production', "Production", ondelete='RESTRICT',
         domain=[
             ('company', '=', Eval('_parent_purchase', {}).get('company', -1)),
             ],

Reply via email to