Mildred Ki'Lya
Mildred Ki'Lya
What's the meaning of those account and why do we need those types in books?
I'm wondering how this works with accounting... When you pay taxes in a country, you always declare everything in the currency of that country. I'm not really an expert at...
So, an account could have funds in multiple currencies. Reports could either show the amount in those accounts in all of their currencies or would use a conversion rate (either...
Without Lebanese background, it's difficult to understand what these items really mean. probably each would deserve its own GitHub issue.
`doc.submitted` would be what I was looking for , except I cannot see when this value would be true. On all my invoices, it is false. Additional form customization would...
`{{JSON.stringify(doc)}}` on version 0.18 (august 22 this year) does not show any `submitted` field.
the `submited` field is ignored in the template values because it is a meta field: https://github.com/frappe/books/blob/e86778f09eec7c44c144300bb424c840bd87ed4f/src/utils/printTemplates.ts#L139-L143 To include it, either we don't skip meta fields or we add it specifically...
something like: ```js values.doc.submitted = doc.submitted; values.doc.cancelled = doc.cancelled; ```
Did you try custom fields, would that work for you?
This requires more cooperation with the system, hence this is probably not trivial.