CMS Development

NSchönherr
Participant

Pass Custom Quote modules to UI when creating a quote for a deal

SOLVE

Hey, I want to pass some drop-down menus which change the Text and also a module that changes the Pricing on my quote according to Sales-Qualification-factors already made in the CRM by our sales reps. 

 

I already created the modules but am just able to use them, when editing the custom quote draft. Not when creating the final quote for a customer. Do I miss something or is it not possible to display these modules in the "create quote"-UI? 

0 Upvotes
1 Accepted solution
Jake_Lett
Solution
Guide | Partner
Guide | Partner

Pass Custom Quote modules to UI when creating a quote for a deal

SOLVE

Check out this article for the data you have access to. https://developers.hubspot.com/docs/cms/hubl/variables/quotes

 

Then try this on your custom code template to get all the data properties that are available. You can then output your exact value.

{{DEAL|pprint}}

 

{{DEAL.my_custom_deal_property}}

View solution in original post

4 Replies 4
Jake_Lett
Guide | Partner
Guide | Partner

Pass Custom Quote modules to UI when creating a quote for a deal

SOLVE

That is correct. Those modules will only be available when you edit or create a new quote template. 

 

The quote creation UI is limited to the quote details and line items.

 

A workaround is if you create a custom code template, you could use deal properties and product properties to display things on the quote.

0 Upvotes
NSchönherr
Participant

Pass Custom Quote modules to UI when creating a quote for a deal

SOLVE

Thank you for your response!. So I can pass Deal-properties dinamically into the quote? Do I need to create a custom module for it or can I just call the properties in the html-file?

0 Upvotes
Jake_Lett
Solution
Guide | Partner
Guide | Partner

Pass Custom Quote modules to UI when creating a quote for a deal

SOLVE

Check out this article for the data you have access to. https://developers.hubspot.com/docs/cms/hubl/variables/quotes

 

Then try this on your custom code template to get all the data properties that are available. You can then output your exact value.

{{DEAL|pprint}}

 

{{DEAL.my_custom_deal_property}}

NSchönherr
Participant

Pass Custom Quote modules to UI when creating a quote for a deal

SOLVE

Thanks a lot for your fast reply!! 

0 Upvotes