@@ -49,20 +49,23 @@ def by_account(self, value):
4949 if o .incomeAccount == value or o .outcomeAccount == value :
5050 yield o
5151
52- def by_id (self , id ):
53- return self ._by_attr_uniq ('id' , id )
52+ def by_id (self , value ):
53+ return self ._by_attr_uniq ('id' , value )
5454
55- def by_symbol (self , symbol ):
56- return self ._by_attr_uniq ('symbol' , symbol )
55+ def by_symbol (self , value ):
56+ return self ._by_attr_uniq ('symbol' , value )
5757
58- def by_tag (self , tag ):
59- return self ._by_attr ('tag' , tag )
58+ def by_tag (self , value ):
59+ return self ._by_attr ('tag' , value )
6060
61- def by_title (self , title ):
62- return self ._by_attr_uniq ('title' , title )
61+ def by_title (self , value ):
62+ return self ._by_attr_uniq ('title' , value )
6363
64- def by_shortTitle (self , shortTitle ):
65- return self ._by_attr_uniq ('shortTitle' , shortTitle )
64+ def by_shortTitle (self , value ):
65+ return self ._by_attr_uniq ('shortTitle' , value )
66+
67+ def by_user (self , value ):
68+ return self ._by_attr ('user' , value )
6669
6770 def _by_attr_uniq (self , attr , value ):
6871 for o in self :
0 commit comments