[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb:[4161] branches/1.3/UI/taxform
- Subject: SF.net SVN: ledger-smb:[4161] branches/1.3/UI/taxform
- From: ..hidden..
- Date: Thu, 08 Dec 2011 08:33:54 +0000
Revision: 4161
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=4161&view=rev
Author: einhverfr
Date: 2011-12-08 08:33:54 +0000 (Thu, 08 Dec 2011)
Log Message:
-----------
Committing accidently omitted 1099 forms. Something has changed that is keeping these from working though, needs more work
Modified Paths:
--------------
branches/1.3/UI/taxform/details_report.html
branches/1.3/UI/taxform/summary_report.html
Added Paths:
-----------
branches/1.3/UI/taxform/1099-INT-base.tex
branches/1.3/UI/taxform/1099-INT.tex
branches/1.3/UI/taxform/1099-MISC-base.tex
branches/1.3/UI/taxform/1099-MISC.tex
Added: branches/1.3/UI/taxform/1099-INT-base.tex
===================================================================
--- branches/1.3/UI/taxform/1099-INT-base.tex (rev 0)
+++ branches/1.3/UI/taxform/1099-INT-base.tex 2011-12-08 08:33:54 UTC (rev 4161)
@@ -0,0 +1,27 @@
+<?lsmb BLOCK taxform ?>
+\begin{textblock}{4}[0,1](0.5, 1)
+<?lsmb company_name ?>
+<?lsmb company_address ?>
+Tel: <?lsmb company_telephone ?>
+\end{textblock}
+
+\begin{textblock}{2}[0,1](0.5, 2)
+<?lsmb my_tax_code ?>
+\end{textblock}
+
+\begin{textblock}{2}[0,1](2.5, 2)
+<?lsmb taxnumber ?>
+\end{textblock}
+
+\begin{textblock}{4}[0,1](0.5, 2.5)
+<?lsmb pay_to_name ?>\\
+<?lsmb IF line_one; line_one ?> \\ <?lsmb END -?>
+<?lsmb IF line_two; line_two ?> \\ <? END -?>
+<?lsmb IF line_three; line_three ?> \\ <? END -?>
+<?lsmb city ?>, <?lsmb state ?> <?lsmb mail_code ?>
+\end{textblock}
+
+\begin{textblock}{2}[0,1](4.5, 1.5)
+<?lsmb total ?>
+\end{textblock}
+<?lsmb END # Block ?>
Added: branches/1.3/UI/taxform/1099-INT.tex
===================================================================
--- branches/1.3/UI/taxform/1099-INT.tex (rev 0)
+++ branches/1.3/UI/taxform/1099-INT.tex 2011-12-08 08:33:54 UTC (rev 4161)
@@ -0,0 +1,15 @@
+\documentclass[usletter]{article}
+\usepackage{textpos}
+<?lsmb INCLUDE "${taxform}-base.tex" #$ ?>
+\begin{document}
+<?lsmb FOR tf in results ?>
+<?lsmb INCLUDE taxform
+pay_to_name = tf.legal_name
+pay_to_line_one = tf.line_one
+pay_to_line_two = tf.line_two
+pay_to_line_three = tf.line_three
+my_tax_code = business_number
+taxnumber = tf.taxnumber
+total_sum = tf.total_sum
+<?lsmb END # FOR tf ?>
+\end{document}
Added: branches/1.3/UI/taxform/1099-MISC-base.tex
===================================================================
--- branches/1.3/UI/taxform/1099-MISC-base.tex (rev 0)
+++ branches/1.3/UI/taxform/1099-MISC-base.tex 2011-12-08 08:33:54 UTC (rev 4161)
@@ -0,0 +1,25 @@
+<?lsmb BLOCK taxformpart ?>
+\begin{textblock}{4}[0,1](0.5, 1)
+<?lsmb company_name ?>
+<?lsmb company_address ?>
+Tel: <?lsmb company_telephone ?>
+\end{textblock}
+
+\begin{textblock}{2}[0,1](0.5, 2)
+<?lsmb my_tax_code ?>
+\end{textblock}
+
+\begin{textblock}{2}[0,1](2.5, 2)
+<?lsmb taxnumber ?>
+\end{textblock}
+
+\begin{textblock}{4}[0,1](0.5, 2.5)
+<?lsmb pay_to_name ?>\\
+<?lsmb city ?>, <?lsmb state ?> <?lsmb mail_code ?>
+\end{textblock}
+
+\begin{textblock}{2}[0,1](4.5, 3)
+<?lsmb total_sum ?>
+\end{textblock}
+<?lsmb END # Block taxformpart ?>
+
Added: branches/1.3/UI/taxform/1099-MISC.tex
===================================================================
--- branches/1.3/UI/taxform/1099-MISC.tex (rev 0)
+++ branches/1.3/UI/taxform/1099-MISC.tex 2011-12-08 08:33:54 UTC (rev 4161)
@@ -0,0 +1,15 @@
+\documentclass[usletter]{article}
+\usepackage{textpos}
+<?lsmb INCLUDE "${taxform}-base.tex" #$ ?>
+\begin{document}
+<?lsmb FOR tf in results ?>
+<?lsmb INCLUDE taxform
+pay_to_name = tf.legal_name
+pay_to_line_one = tf.line_one
+pay_to_line_two = tf.line_two
+pay_to_line_three = tf.line_three
+my_tax_code = business_number
+taxnumber = tf.taxnumber
+total_sum = tf.total_sum
+<?lsmb END # FOR tf ?>
+\end{document}
Modified: branches/1.3/UI/taxform/details_report.html
===================================================================
--- branches/1.3/UI/taxform/details_report.html 2011-12-08 08:21:34 UTC (rev 4160)
+++ branches/1.3/UI/taxform/details_report.html 2011-12-08 08:33:54 UTC (rev 4161)
@@ -45,7 +45,7 @@
} ?>
<?lsmb PROCESS button element_data = {
name="action"
- text="Print"
+ text=text("Print")
value="print"
class="submit"
type="submit"
Modified: branches/1.3/UI/taxform/summary_report.html
===================================================================
--- branches/1.3/UI/taxform/summary_report.html 2011-12-08 08:21:34 UTC (rev 4160)
+++ branches/1.3/UI/taxform/summary_report.html 2011-12-08 08:33:54 UTC (rev 4161)
@@ -43,7 +43,7 @@
} ?>
<?lsmb PROCESS button element_data {
name="action"
- text="Print"
+ text=text("Print")
value="print"
class="submit"
type="submit"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.