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)