Kaydet (Commit) 36f1aef5 authored tarafından Adrian Holovaty's avatar Adrian Holovaty

Fixed #927 -- Non-integer primary keys save() method now works

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1569 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst 4aedb738
......@@ -720,9 +720,9 @@ class ForeignKey(Field):
def get_db_prep_save(self,value):
if value == '' or value == None:
return None
return None
else:
return int(value)
return self.rel.get_related_field().get_db_prep_save(value)
def flatten_data(self, follow, obj = None):
if not obj:
......@@ -731,9 +731,9 @@ class ForeignKey(Field):
# the length of choices is *2*, not 1, because SelectFields always
# have an initial "blank" value.
if not self.blank and not self.rel.raw_id_admin and self.choices:
choice_list = self.get_choices_default()
if len(choice_list) == 2:
return { self.attname : choice_list[1][0] }
choice_list = self.get_choices_default()
if len(choice_list) == 2:
return { self.attname : choice_list[1][0] }
return Field.flatten_data(self, follow, obj)
class ManyToManyField(Field):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment