Announcement

Collapse
No announcement yet.

Link Quotes entity->quoteitems to tasks entity?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Link Quotes entity->quoteitems to tasks entity?

    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?

  • #2
    You need to create relationships manually for Task and QuoteItem in entity defs

    Comment


    • worldmiros
      worldmiros commented
      Editing a comment
      Like this?

      "QuoteItems":{
      "name": ["name"],
      "quantity":["tot_hours"],
      "listprice":["hourlyRate"],
      "unitprice":["hourlyRate"],
      }
      "Task":{
      "name":["name"],
      "hourlyRate":["listprice","unitprice"],
      }
      "Account":{
      "tot_hours":["quantity"]
      }

    • worldmiros
      worldmiros commented
      Editing a comment
      Not too familiar on how JSON represents relationship metadata. Any hint on how I would create the relationship?

    • worldmiros
      worldmiros commented
      Editing a comment
      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.
Working...
X