1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00

report fixes

This commit is contained in:
alltheworld 2014-03-05 18:42:48 +02:00
parent 03031710d7
commit 31452a37e8

View File

@ -1224,6 +1224,13 @@ y2=GlobalY;
doc.text(AmountX, x, AmountText);
if (terms )
{
GlobalY=GlobalY+100;
length=doc.splitTextToSize( terms, 200).length;
@ -1241,6 +1248,9 @@ y2=GlobalY;
doc.text(40, GlobalY, terms);
GlobalY=GlobalY+h;
}
if (public_notes )
{
//GlobalY=GlobalY+100;
length=doc.splitTextToSize( public_notes, 200).length;
@ -1258,7 +1268,7 @@ y2=GlobalY;
GlobalY=GlobalY+h;
}
return doc;
}