Forum Discussion
UrsulaLlaveria
5 years agoQrew Assistant Captain
Thanks Mark! Funnily enough, that is what I ended up doing. I had to create text versions of all the related record ids I was referencing, and it seems to work. I will have to do some further testing to make sure it works in all instances, but this is a good workaround. I am surprised that this hasn't been identified as a bug of some kind, seems a little convoluted to get a record id.
------------------------------
Ursula
------------------------------
------------------------------
Ursula
------------------------------
AngelRodriguez
5 years agoQrew Assistant Captain
Ursula, with jinja templates you'd want to use the 'round' filter. So instead of
------------------------------
AR
------------------------------
round({{ a.bill_to_matter }})
, you just write {{ a.bill_to_matter|round }}
------------------------------
AR
------------------------------
- UrsulaLlaveria5 years agoQrew Assistant CaptainThanks Angel, What I ended up using was the {{ a.bill_to_matter|int }} option instead. I didn't want to use Round because this is the Record ID# (key field) and I didn't want there to be any mistakes with it rounding up or down a number and it creating a record related to the wrong record.
------------------------------
Ursula
------------------------------