Opened 8 years ago
Closed 8 years ago
#28997 closed Bug (invalid)
NameError: name 'last_property' is not defined
| Reported by: | agplacid | Owned by: | nobody |
|---|---|---|---|
| Component: | Migrations | Version: | 2.0 |
| Severity: | Normal | Keywords: | |
| Cc: | Triage Stage: | Unreviewed | |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description (last modified by )
Hi everyone, my first post here, I hope you are all doing great. I am writing a shortlet App and I want each property that is added to the app to have a unique generated ID with my initial parameters. I have written the following code but I am get this error when I run makemigrations "NameError: name 'last_property' is not defined"
Here is the code, please I need help to resolve this.
def increment_property_number():
last_property = Property.objects.all().order_by('id').last()
if not last_property:
return 'KSL' + str(datetime.date.today().year)
str(datetime.date.today().month).zfill(2) + '0000'
property_id = last_property.property_id
property_int = int(prperty_id[9:13])
new_property_int = property_int + 1
new_property_id = 'KSL' + str(str(datetime.date.today().year))
str(datetime.date.today().month).zfill(2) + str(new_property_int).zfill(4)
Change History (2)
comment:1 by , 8 years ago
| Component: | Uncategorized → Migrations |
|---|---|
| Type: | Uncategorized → Bug |
comment:2 by , 8 years ago
| Description: | modified (diff) |
|---|---|
| Resolution: | → invalid |
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Please see TicketClosingReasons/UseSupportChannels for ways to get help.