From 536629d9a02a812fc78cd8ac8b0d395cb438ae0b Mon Sep 17 00:00:00 2001 From: Raimon Esteve Date: Fri, 29 Jun 2018 12:18:35 +0200 Subject: [PATCH] Remove issue7529.diff From trytond changeset-1380782037e6 --- issue7529.diff | 16 ---------------- series | 1 - 2 files changed, 17 deletions(-) delete mode 100644 issue7529.diff diff --git a/issue7529.diff b/issue7529.diff deleted file mode 100644 index 89e8891..0000000 --- a/issue7529.diff +++ /dev/null @@ -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) diff --git a/series b/series index 2a48198..508ab01 100644 --- a/series +++ b/series @@ -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