Tuesday, May 3, 2016

Re: manipulate n insert field values

> Den 3. maj 2016 kl. 02.45 skrev Shameema Mohsin <itz.shameema@gmail.com>:
>
>
> Stil stuck with the z order calculation and usage of the property field. Kindly help. I am new to Django, only knows php well.

Where are you stuck? Show your error messages, current non-working code and expected result, or describe your problem in more detail.

I assume you have code to calculate the z order (I have no idea what it is). Otherwise, other forums would be better for help on this. Assuming that, you would do:

def get_z_order(lat, long):
# Jiggle those numbers
return z_order


class Employees(models.Model):
[...]
@property
def zval(self):
return get_z_order(self.empLat, self.empLong)


You can then access zval as if it was a model field.

Erik

--
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+unsubscribe@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/0E25E884-F38C-4314-B2B3-0ADAF813253E%40cederstrand.dk.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment