summaryrefslogtreecommitdiff
path: root/Vereinskram/Finanzplanung/tablegen.py
blob: 53a402c598613c8e5087d943bc53b7a5aa357709 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
hourprices = [3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 18, 20, 25]
material = [1, 1.5, 2, 2.5, 3, 3.5, 4, 4.5, 5]

mat_cost = 5 * 7 * 0.01
hours = 1

print "[[!table class=\"table table-hover\" data=\"\"\""

print "Preis | " + " | ".join(["%d CHF/h" % x for x in hourprices])

for factor in material:
  print ("%sx Material | " % (factor) +
         " | ".join(["%.02f" % round(x * hours + factor * mat_cost, 2)
                     for x in hourprices]))

print "\"\"\"]]"