mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 09:26:27 +00:00
Merge branch 'missing_invoice_template' into 'dev'
Fix invoice template issues See merge request re2o/re2o!499
This commit is contained in:
commit
4017850e7e
2 changed files with 3 additions and 1 deletions
|
@ -73,7 +73,8 @@ def send_mail_invoice(invoice):
|
||||||
"tpl_path": os.path.join(settings.BASE_DIR, LOGO_PATH),
|
"tpl_path": os.path.join(settings.BASE_DIR, LOGO_PATH),
|
||||||
}
|
}
|
||||||
|
|
||||||
pdf = create_pdf("cotisations/factures.tex", ctx)
|
template = CotisationsOption.get_cached_value("invoice_template").template.name.split("/")[-1]
|
||||||
|
pdf = create_pdf(template, ctx)
|
||||||
template = get_template("cotisations/email_invoice")
|
template = get_template("cotisations/email_invoice")
|
||||||
|
|
||||||
ctx = {
|
ctx = {
|
||||||
|
|
|
@ -745,6 +745,7 @@ interactive_guide() {
|
||||||
|
|
||||||
install_webserver "$web_serveur" "$is_tls" "$url_server"
|
install_webserver "$web_serveur" "$is_tls" "$url_server"
|
||||||
|
|
||||||
|
copy_templates_files
|
||||||
|
|
||||||
|
|
||||||
###########################
|
###########################
|
||||||
|
|
Loading…
Reference in a new issue