Author: reinhard Date: 2010-10-20 15:23:13 -0500 (Wed, 20 Oct 2010) New Revision: 10216
Modified: trunk/gnue-forms/ trunk/gnue-forms/src/GFObjects/GFBlock.py trunk/gnue-forms/src/GFObjects/GFField.py Log: When creating a new record through autosearch, initialize it with the entered value without marking it as dirty. Property changes on: trunk/gnue-forms ___________________________________________________________________ Name: bzr:revision-info - timestamp: 2010-10-20 21:59:54.786000013 +0200 committer: Reinhard Müller <[email protected]> properties: branch-nick: forms + timestamp: 2010-10-20 22:20:48.809000015 +0200 committer: Reinhard Müller <[email protected]> properties: branch-nick: forms Name: bzr:file-ids - src/GFObjects/GFBlock.py 1...@3a364389-8fce-0310-8f11-cc363fde16c7:trunk%2Fgnue-forms:src%2FGFObjects%2FGFBlock.py + src/GFObjects/GFBlock.py 1...@3a364389-8fce-0310-8f11-cc363fde16c7:trunk%2Fgnue-forms:src%2FGFObjects%2FGFBlock.py src/GFObjects/GFField.py 1...@3a364389-8fce-0310-8f11-cc363fde16c7:trunk%2Fgnue-forms:src%2FGFObjects%2FGFField.py Name: bzr:revision-id:v4 - 3116 [email protected] 3117 [email protected] 3118 [email protected] 3119 [email protected] 3120 [email protected] 3121 [email protected] 3122 [email protected] 3123 [email protected] 3124 [email protected] 3125 [email protected] 3126 [email protected] 3127 [email protected] 3128 [email protected] 3129 [email protected] 3130 [email protected] 3131 [email protected] 3132 [email protected] 3133 [email protected] 3134 [email protected] 3135 [email protected] 3136 [email protected] + 3116 [email protected] 3117 [email protected] 3118 [email protected] 3119 [email protected] 3120 [email protected] 3121 [email protected] 3122 [email protected] 3123 [email protected] 3124 [email protected] 3125 [email protected] 3126 [email protected] 3127 [email protected] 3128 [email protected] 3129 [email protected] 3130 [email protected] 3131 [email protected] 3132 [email protected] 3133 [email protected] 3134 [email protected] 3135 [email protected] 3136 [email protected] 3137 [email protected] Name: bzr:text-parents - + src/GFObjects/GFField.py [email protected] Modified: trunk/gnue-forms/src/GFObjects/GFBlock.py =================================================================== --- trunk/gnue-forms/src/GFObjects/GFBlock.py 2010-10-20 20:00:32 UTC (rev 10215) +++ trunk/gnue-forms/src/GFObjects/GFBlock.py 2010-10-20 20:23:13 UTC (rev 10216) @@ -1161,7 +1161,7 @@ # Insertion and Deletion of Records # ------------------------------------------------------------------------- - def new_record(self): + def new_record(self, **params): """ Add a new record to the block. """ @@ -1172,9 +1172,14 @@ if self.__resultset is None: raise NoDataInBlockError(self) + defaults = self._lastValues.copy() + for (fieldname, value) in params.iteritems(): + field = self._fieldMap[fieldname] + defaults[field.field] = field.reverse_lookup(value) + self._focus_out() - self.__resultset.insertRecord(self._lastValues) + self.__resultset.insertRecord(defaults) self._focus_in() Modified: trunk/gnue-forms/src/GFObjects/GFField.py =================================================================== --- trunk/gnue-forms/src/GFObjects/GFField.py 2010-10-20 20:00:32 UTC (rev 10215) +++ trunk/gnue-forms/src/GFObjects/GFField.py 2010-10-20 20:23:13 UTC (rev 10216) @@ -619,9 +619,9 @@ self.__in_validate = True try: if not self._block.search_record( - **{self.field: self.__autosearch_value}): - self._block.new_record() - self.__set_value(self.__autosearch_value) + **{self.name: self.__autosearch_value}): + self._block.new_record( + **{self.name: self.__autosearch_value}) finally: self.__in_validate = False _______________________________________________ commit-gnue mailing list [email protected] http://lists.gnu.org/mailman/listinfo/commit-gnue
