changeset f6a1f2cd3845 in modules/sale_invoice_grouping:default
details:
https://hg.tryton.org/modules/sale_invoice_grouping?cmd=changeset&node=f6a1f2cd3845
description:
Use declarative index definition for ModelSQL
issue5757
review361251002
diffstat:
party.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 62a1f3cbccb7 -r f6a1f2cd3845 party.py
--- a/party.py Mon May 02 17:28:59 2022 +0200
+++ b/party.py Tue Oct 11 00:44:50 2022 +0200
@@ -30,7 +30,7 @@
"Party Sale Invoice Grouping Method"
__name__ = 'party.party.sale_invoice_grouping_method'
party = fields.Many2One(
- 'party.party', "Party", ondelete='CASCADE', select=True)
+ 'party.party', "Party", ondelete='CASCADE')
sale_invoice_grouping_method = fields.Selection(
'get_sale_invoice_grouping_methods', "Sale Invoice Grouping Method")