Hello team manager, can we make reference or number invoice automatic with personal format like INVYYMM#INV-NUMBER Automatic
thanks
Hello team manager, can we make reference or number invoice automatic with personal format like INVYYMM#INV-NUMBER Automatic
thanks
Chatbot says ![]()
Short answer: not fully automatic with a custom format. Manager can auto‑number invoices, but the automatic part is numeric only. It can’t auto‑generate prefixes like “INV” or date parts (YYMM) as part of the reference. (www2.manager.io)
What you can do today
Set-and-forget tip
Agree with you it’s so essential
Thank you
Seems almost the same request is already in Ideas here:
It can be done with something like this in a custom template,
{% assign factuur_datum = fields.Factuurdatum | split: “-” %}
Factuurnummer: INV{{ factuur_datum[1] }}{{ factuur_datum[2] }}-{{ fields.Factuurnummer }}But the post or prefix isn’t used in Manager. It only shows on your invoices.
thank you,
how to add this code at custom template ?
Use this code if your language settings in Manager are English otherwise adjust the code (
Invoice date and Invoice number) to your Manager settings language
{% assign Date_formated = fields.['Invoice date'] | split: "-" %}
Invoice: INV{{ Date_formated[2] }}{{ Date_formated[1] }}-{{ fields['Invoice number'] }}
thanks