I have Quotes entity that has a category called Item, and table for the Item called "QuoteItem". How can link every Task to the Quote Items, so it's listed automatically without having to manual choose a task?
Link Quotes entity->quoteitems to tasks entity?
Collapse
X
-
Tags: None
-
You need to create relationships manually for Task and QuoteItem in entity defsIf you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.-
Like this?
"QuoteItems":{
"name": ["name"],
"quantity":["tot_hours"],
"listprice":["hourlyRate"],
"unitprice":["hourlyRate"],
}
"Task":{
"name":["name"],
"hourlyRate":["listprice","unitprice"],
}
"Account":{
"tot_hours":["quantity"]
} -
Not too familiar on how JSON represents relationship metadata. Any hint on how I would create the relationship? -
hey yuri, we buy an extension pack. need assistance on how to manually create relationship. send us sample to understand on how it relation is create manually.
-
Comment