bygdis.fi

git clone https://git.tarina.org/bygdis.fi
Log | Files | Refs | README

fakturor.html (931B)


      1 $def with (alla_fakturor,getkund,getmaksuja,round,getprodukt)
      2 
      3 <br>
      4 <h1>Bygdis.fi</h1>
      5 <a href="/admin"><<-----tibaks</a>
      6 <h2>Fakturor</h2>
      7 <br>
      8 <a href="/static/mlinvoice">Till Mlinvoice (fakturerings program)</a> 
      9 <br>
     10     <br>
     11 $for i in alla_fakturor:
     12     $if i.deleted == 0:
     13         <br>
     14         $if i.company_id:
     15             $getkund(i.company_id)<br>
     16         nr: $i.invoice_no<br>
     17         ref: $i.ref_number<br>
     18         datum: $i.invoice_date<br> 
     19         sista betalningsdag: $i.due_date<br>
     20         $ tot = 0
     21         $for p in getmaksuja(i.id):
     22             $if p.deleted != 1:
     23                 $ tot = tot + p.price
     24                 $if p.product_id:
     25                     $getprodukt(p.product_id).product_name
     26                 $else:
     27                     $p.description
     28                 $round(p.price,2) € <br>
     29         totalt: $round(tot,2) €<br>
     30         <a href='/fakturor?faktura=$i.id'>öppna som pdf</a>
     31         <hr>
     32