Django reporting column doesn't exist when it does, keeps crashing form on save

2019-08-02 Thread Kean
Hi,

Django keeps reporting the following, 

OperationalError at /admin/setupcont/contractor/add/

table setupcont_contractor has no column named MSMe_bus

Request Method: POST
Request URL: http://127.0.0.1:8000/admin/setupcont/contractor/add/
Django Version: 2.2.3
Exception Type: OperationalError
Exception Value: 

table setupcont_contractor has no column named MSMe_bus




The column however does exist, I've tried running migrations, deleting 
migrations folder, running again...but bash says their are no migrations to 
perform,

I'm not sure if its me or something out of sync, but it's causing the table to 
crash when saving.


Please advise if anyone has seen this and how they fixed.


Best,


K

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e74442c0-4561-4ca5-83cc-fa73e2d60241%40googlegroups.com.


Re: Django reporting Library recommendations

2019-04-16 Thread Shaheed Haque
Hi Brian,

On Tue, 16 Apr 2019 at 12:21, Brian Mcnabola  wrote:
>
> Im looking for a Django reporting library something similar to Django report 
> builder ?

Can you clarify what you are looking for that Django report builder
does not provide? For example, we use JasperReports wrapped for use
from Python but that is a very different approach that Django report
builder.

Thanks, Shaheed

> --
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to django-users+unsubscr...@googlegroups.com.
> To post to this group, send email to django-users@googlegroups.com.
> Visit this group at https://groups.google.com/group/django-users.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/b7f8225b-1c9a-4d67-b74c-5667c98aa4d2%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHAc2jd%2BkMDKsc5wLPMPBjL534mTwQWS_osYBYu0mqZDCkt_7g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Django reporting Library recommendations

2019-04-16 Thread Brian Mcnabola
Im looking for a Django reporting library something similar to Django 
report builder ? 

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b7f8225b-1c9a-4d67-b74c-5667c98aa4d2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Django reporting....

2010-01-29 Thread Rick Caudill
Hi everyone,

I have been working on a Django reporting tool for the company I work for
and wonder if anyone thinks a reporting tool like attached would be valuable
to the community???  I should say that it doesn't handle m2m yet but I am
working on that.  I would also want to clean the code up some and put it on
google code but I want to pull the audience first to see if something like
it would be welcomed.  This is all the code that is needed in order to
create the screenshot attached:

class StudentFieldForm(FieldForm):
class Meta:
model = Student
inline_models = [Demographics,Medical,Emergency]
inline_excludes = {'Medical':['student'],'Demographics':['student']}

exclude=('school','address','student','studentclass.student','access_restrictions','photo')
extra_fields={'Student':{'age':CALLABLE}}

class StudentReportSearchForm(SearchForm):
class Meta:
model = Student
inline_models = [Demographics,Medical,Emergency]
inline_excludes = {'Medical':['student'],'Demographics':['student']}

exclude=('school','address','student','studentclass.student','access_restrictions','photo')

extra_fields={'Student':{'age':CALLABLE},'Father':{'father_fname':CALLABLE}}
class StudentOrderSearchForm(OrderingForm):
class Meta:
model = Student
inline_models = [Demographics,Medical,Emergency]
inline_excludes = {'Medical':['student'],'Demographics':['student']}

exclude=('school','address','student','studentclass.student','access_restrictions','photo')
extra_fields={'Student':{'age':CALLABLE}}

StudentFieldsFormset =
formset_factory(StudentFieldForm,formset=FieldFormSet)
StudentReportFormset =
formset_factory(StudentReportSearchForm,formset=SearchBaseFormSet)
StudentOrderFormset = formset_factory(StudentOrderSearchForm)

-- 
Rick Caudill

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

<>

Re: django reporting

2009-07-08 Thread Friðrik Már Jónsson

Hi ankit,

ankit wrote:
> What is django reporting is anybody has some idea ?

I think you should have put some more time into crafting your question.

If you're referring to the django-reporting module (in which case a  
Google search should have sufficed), you can read up on it online[2].

Regards,
Friðrik Már

P.S. You should read How To Ask Questions The Smart Way[2].  Please  
don't be offended, this is the friendliest hint; it's a good and  
insightful read about asking good questions that everyone needs at one  
time or another.

[1] http://code.google.com/p/django-reporting/
[2] http://catb.org/esr/faqs/smart-questions.html
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---



django reporting

2009-07-08 Thread ankit

What is django reporting is anybody has some idea ?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~--~~~~--~~--~--~---