Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

Version 2.4.3 to 2.4.4

Only if you dont use the default-invoice-template.tex!

  • placeholder 'canceled_to' is now used for cancelation date of contract - so change if-then-else condition & text placeholder in LaTeX invoice template

    # replace
    \ifthenelse{\equal{{last\_cancel\_date}}{}}
        {Der Vertrag wurde gekündigt zum: {end\_of\_term}.}
    %else
    {
        \begin{tabular} {@{}ll}
            % Vertragsbeginn: {start\_of\_term}\\
            Tariflaufzeit: & {maturity}\\
            Nächstmögliches Laufzeitende: & {end\_of\_term}\\
            Kündigungsfrist: & {period\_of\_notice}\\
            Spätester Kündigungszeitpunkt: & {last\_cancel\_date}\\
        \end{tabular}
    }
    # by 
    \ifthenelse{\equal{{canceled\_to}}{}}
    {
        \begin{tabular} {@{}ll}
            % Vertragsbeginn: {start\_of\_term}\\
            Tariflaufzeit: & {maturity}\\
            Nächstmögliches Laufzeitende: & {end\_of\_term}\\
            Kündigungsfrist: & {period\_of\_notice}\\
            Spätester Kündigungszeitpunkt: & {last\_cancel\_date}\\
        \end{tabular}
    }
    %else
    {Der Vertrag wurde gekündigt zum: {canceled\_to}.}
  • No labels