Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can someone help me with this. I am pretty new to this and I kinda a bit blank now. I know maybe its just a silly question but honestly I am stuck.

I get this error:

Exception Type: IntegrityError at /building/

Exception Value: solution_building.ID_CUSTOMER_id may not be NULL

What am I doing wrong here

views.py

class buildingView(UpdateView):
template_name="building.html"
model = building
form_class = buildingForm

def get_context_data(self, **kwargs):
    context = super(buildingView, self).get_context_data(**kwargs)  

    context['pk'] = 1
    context['numberOfObjects'] = building.objects.all().count()

    return context

def get_object(self, queryset = None):
    try: 
        obj = building.objects.get(id = 1)
    except: 
        obj = building.objects.create(id = 1)
    return obj

def form_valid(self, form):

    form.save()
    return HttpResponseRedirect(reverse("building_view", kwargs={'pk': self.kwargs['pk']}))

and when i doing python manage.py sql i got this

CREATE TABLE "solution_building" (
"id" integer NOT NULL PRIMARY KEY,
"ID_CUSTOMER_id" integer NOT NULL REFERENCES "solution_customer" ("id"),
"BUILDING_USE" varchar(2) NOT NULL,
"BUILDING_FLOORSPACE" integer,

Needed help. Thank you so much.

model.py

class building(models.Model):
id                   = models.AutoField(primary_key = True)
ID_CUSTOMER          = models.ForeignKey(customer)
BUILDING_USE         = models.CharField(max_length = 2, blank = True, choices = c.Anvendelse)
BUILDING_FLOORSPACE  = models.IntegerField(null = True, blank = True)
def __unicode__(self):
    return '%s' % (self.ID_CUSTOMER)
share|improve this question
1  
can you show your model? Exception Value: solution_building.ID_CUSTOMER_id may not be NULL means that you are entering a null value for something that shouldn't be null. In this case, it seems that you are referencing a foreign key but you are not inserting the value for the foreign key value "ID_CUSTOMER_id" – stupidbodo Mar 13 at 11:27
Thks @RyanLiao Yes i posted the models.py. How do i make it so that it will accept also null?? – noobes Mar 13 at 11:33
you ID_Customer must be also null=True and blank=True – catherine Mar 13 at 11:35
but then it give me an error 'ForeignKey' object is not callable – noobes Mar 13 at 11:40

1 Answer

The error is from here:

def get_object(self, queryset = None):
    try: 
        obj = building.objects.get(id = 1)
    except: 
        obj = building.objects.create(id = 1) <---- here
    return obj

Your trying to create new building data with the id?

Based on your building table, ID_CUSTOMER, BUILDING_USE, and BUILDING_FLOORSPACE required value. So when your trying to create new building it trigger the error.

UPDATE:

class building(models.Model):
    #id = models.AutoField(primary_key = True) --> you don't need this, the system automatically create id
    CUSTOMER = models.ForeignKey(customer, null=True, blank=True)
    BUILDING_USE = models.CharField(max_length=2, 
        blank=True, choices=c.Anvendelse, default="base on choices")
    BUILDING_FLOORSPACE  = models.IntegerField(default=0)

    def __unicode__(self):
        return '{0}' % (self)
share|improve this answer
ok thks @catherine. how do i do if it will also accept new building?? – noobes Mar 13 at 11:37
ID_Customer must be also null=True and blank=True. delete database and sync again – catherine Mar 13 at 11:47
thks @catherine...done it and now i get another error ´Cannot assign "u''": "building.ID_CUSTOMER" must be a "customer" instance.´...what is that mean?? – noobes Mar 13 at 11:49
1  
´default = "base on choices" is based on your Anvendelse choice. Change the default value, don't copy that :). And about the ´default=0, it is valid for IntegerField if there is no value defined. That is the default value 0 – catherine Mar 13 at 12:07
1  
default="02" and about your problem, you need to create new customer then get the id. That id will serve as the value of CUSTOMER. Is that ok? – catherine Mar 13 at 13:31
show 8 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.