Hello Chirstian,
I've checked your override template , and got the issue near line no 80 on below mentioned file. (see attached screen shot.)
mytemplate/html/com_payplans/_plg/payplans/pdfinvoice/default_pdfcontent.php
<h2 style="text-align: center;"><?php echo $this->loadTemplate('partial_extra_details', compact('invoice')); ?></h2>
<hr />
You can't call load template function directly in template, if you want to show partial extra details template here then you need to use the code as
<?php echo XiHelperTemplate::partial('default_partial_extra_details', array('invoice'=>$invoice)); ?>
Please remove the function in your override and do the changes accordingly.
Let me know if you still have any issue.