You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If a partenrgroup is a partner itself, it can have an address
topics:
- functions to find partnergroup etc
- relations between partners
- show relationships reverse (is this possible in django??)
- is a complex topic
Original issue reported on code.google.com by [email protected] on 20 Dec 2013 at 6:15
The text was updated successfully, but these errors were encountered:
this is pretty complicated.
this should represent the complex relations between eg shops, delivery places,
headquarters, buying organisations etc.
complex lookups are needed (give the the invoice address for a crossdock
delivery).
idea is very nice, but have to have a good 'model' for this
- show relationships reverse (is this possible in django??)
yes for sure, a model with a foreign or manytomany field could be reversed with
a query from foreign model.
if a model B have a foreign field to model A, you could query model B from
model A.
If several ids in model B are related to a same id to model A, you could know
all model B ids from model A id.
For partners we could add a manytomany field related to itself.
Original issue reported on code.google.com by
[email protected]
on 20 Dec 2013 at 6:15The text was updated successfully, but these errors were encountered: