Remove issue7529.diff

From trytond changeset-1380782037e6
This commit is contained in:
Raimon Esteve 2018-06-29 12:18:35 +02:00
parent cd5d398516
commit 536629d9a0
2 changed files with 0 additions and 17 deletions

View file

@ -1,16 +0,0 @@
diff -r f91027954501 trytond/trytond/model/multivalue.py
--- a/trytond/trytond/model/multivalue.py Mon Jun 11 23:17:54 2018 +0200
+++ b/trytond/trytond/model/multivalue.py Thu Jun 28 09:59:05 2018 +0200
@@ -34,8 +34,10 @@
return Value(**pattern)
def __values(self, field, pattern, match_none=True):
- return [v for v in self.multivalue_records(field)
- if v.match(pattern, match_none=match_none)]
+ Value = self.multivalue_model(field)
+ # Limit the cache to matching records
+ return Value.browse((v for v in self.multivalue_records(field)
+ if v.match(pattern, match_none=match_none)))
def get_multivalue(self, name, **pattern):
Value = self.multivalue_model(name)

1
series
View file

@ -1,7 +1,6 @@
babi_multiprocess.diff # [trytond] babi multiprocess
logging_jsonrpc_exeption.diff # [trytond] logging JSONRPC Exception
domain_validation_warning.diff # [trytond] Increase the verbosity of domain_validation_error message
issue7529.diff # [trytond] Limit the cache to only matching multivalue records
issue3932.diff # [account] rule account move and account move line by company
issue4341.diff # [account] Add active invisible in tree/list views