diff options
author | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-04-04 02:35:26 +0000 |
---|---|---|
committer | tetragon <tetragon@4979c152-3d1c-0410-bac9-87ea11338e46> | 2007-04-04 02:35:26 +0000 |
commit | 5c3a962f492011bebe096a5a4b007062152df2d7 (patch) | |
tree | 4767953d3090870de43ccb992ed096545be9e4da /templates/demo/sales_order.html | |
parent | a3a6064b492c70ecacaa5b413547deb695212487 (diff) |
First round of template changes for new TT system
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1023 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'templates/demo/sales_order.html')
-rw-r--r-- | templates/demo/sales_order.html | 104 |
1 files changed, 52 insertions, 52 deletions
diff --git a/templates/demo/sales_order.html b/templates/demo/sales_order.html index d238b339..03d657db 100644 --- a/templates/demo/sales_order.html +++ b/templates/demo/sales_order.html @@ -3,7 +3,7 @@ <table width="100%"> - <?lsmb include letterhead.html ?> + <?lsmb INCLUDE letterhead.html ?> <tr> <td width=10> </td> @@ -26,58 +26,58 @@ <tr valign=top> <td><?lsmb name ?> <br><?lsmb address1 ?> - <?lsmb if address2 ?> + <?lsmb IF address2 ?> <br><?lsmb address2 ?> - <?lsmb end address2 ?> + <?lsmb END ?> <br><?lsmb city ?> - <?lsmb if state ?> + <?lsmb IF state ?> , <?lsmb state ?> - <?lsmb end state ?> + <?lsmb END ?> <?lsmb zipcode ?> - <?lsmb if country ?> + <?lsmb IF country ?> <br><?lsmb country ?> - <?lsmb end country ?> + <?lsmb END ?> <br> - <?lsmb if contact ?> + <?lsmb IF contact ?> <br>Attn: <?lsmb contact ?> - <?lsmb end contact ?> - <?lsmb if customerphone ?> + <?lsmb END ?> + <?lsmb IF customerphone ?> <br>Tel: <?lsmb customerphone ?> - <?lsmb end customerphone ?> - <?lsmb if customerfax ?> + <?lsmb END ?> + <?lsmb IF customerfax ?> <br>Fax: <?lsmb customerfax ?> - <?lsmb end customerfax ?> - <?lsmb if email ?> + <?lsmb END ?> + <?lsmb IF email ?> <br><?lsmb email ?> - <?lsmb end email ?> + <?lsmb END ?> </td> <td><?lsmb shiptoname ?> <br><?lsmb shiptoaddress1 ?> - <?lsmb if shiptoaddress2 ?> + <?lsmb IF shiptoaddress2 ?> <br><?lsmb shiptoaddress2 ?> - <?lsmb end shiptoaddress2 ?> + <?lsmb END ?> <br><?lsmb shiptocity ?> - <?lsmb if shiptostate ?> + <?lsmb IF shiptostate ?> , <?lsmb shiptostate ?> - <?lsmb end shiptostate ?> + <?lsmb END ?> <?lsmb shiptozipcode ?> - <?lsmb if shiptocountry ?> + <?lsmb IF shiptocountry ?> <br><?lsmb shiptocountry ?> - <?lsmb end shiptocountry ?> + <?lsmb END ?> <br> - <?lsmb if shiptocontact ?> + <?lsmb IF shiptocontact ?> <br><?lsmb shiptocontact ?> - <?lsmb end shiptocontact ?> - <?lsmb if shiptophone ?> + <?lsmb END ?> + <?lsmb IF shiptophone ?> <br>Tel: <?lsmb shiptophone ?> - <?lsmb end shiptophone ?> - <?lsmb if shiptofax ?> + <?lsmb END ?> + <?lsmb IF shiptofax ?> <br>Fax: <?lsmb shiptofax ?> - <?lsmb end shiptofax ?> - <?lsmb if shiptoemail ?> + <?lsmb END ?> + <?lsmb IF shiptoemail ?> <br><?lsmb shiptoemail ?> - <?lsmb end shiptoemail ?> + <?lsmb END ?> </td> </tr> </table> @@ -128,41 +128,41 @@ <th><font color=ffffff>Amount</th> </tr> - <?lsmb foreach number ?> + <?lsmb FOREACH number ?> + <?lsmb loop_count = loop.count - 1 ?> <tr valign=top> - <td align=right><?lsmb runningnumber ?>.</td> - <td><?lsmb number ?></td> - <td><?lsmb description ?></td> - <td align=right><?lsmb qty ?></td> - <td><?lsmb unit ?></td> - <td align=right><?lsmb sellprice ?></td> - <td align=right><?lsmb discountrate ?></td> - <td align=right><?lsmb linetotal ?></td> + <td align=right><?lsmb runningnumber.${loop_count} ?>.</td> + <td><?lsmb number.${loop_count} ?></td> + <td><?lsmb description.${loop_count} ?></td> + <td align=right><?lsmb qty.${loop_count} ?></td> + <td><?lsmb unit.${loop_count} ?></td> + <td align=right><?lsmb sellprice.${loop_count} ?></td> + <td align=right><?lsmb discountrate.${loop_count} ?></td> + <td align=right><?lsmb linetotal.${loop_count} ?></td> </tr> - <?lsmb end number ?> + <?lsmb END ?> <tr> <td colspan=8><hr noshade></td> </tr> <tr> - <?lsmb if taxincluded ?> + <?lsmb IF taxincluded ?> <th colspan=6 align=right>Total</th> <td colspan=2 align=right><?lsmb invtotal ?></td> - <?lsmb end taxincluded ?> - - <?lsmb if not taxincluded ?> + <?lsmb ELSE ?> <th colspan=6 align=right>Subtotal</th> <td colspan=2 align=right><?lsmb subtotal ?></td> - <?lsmb end taxincluded ?> + <?lsmb END ?> </tr> - <?lsmb foreach tax ?> + <?lsmb FOREACH tax ?> + <?lsmb loop_count = loop.count - 1 ?> <tr> - <th colspan=6 align=right><?lsmb taxdescription ?> on <?lsmb taxbase ?> @ <?lsmb taxrate ?> %</th> - <td colspan=2 align=right><?lsmb tax ?></td> + <th colspan=6 align=right><?lsmb taxdescription.${loop_count} ?> on <?lsmb taxbase.${loop_count} ?> @ <?lsmb taxrate.${loop_count} ?> %</th> + <td colspan=2 align=right><?lsmb tax.${loop_count} ?></td> </tr> - <?lsmb end tax ?> + <?lsmb END ?> <tr> <td colspan=4> </td> @@ -172,9 +172,9 @@ <tr> <td colspan=4> <?lsmb text_amount ?> ***** <?lsmb decimal ?>/100 - <?lsmb if terms ?> + <?lsmb IF terms ?> <br>Terms Net <b><?lsmb terms ?></b> days - <?lsmb end terms ?> + <?lsmb END ?> </td> <th colspan=2 align=right>Total</th> <th colspan=2 align=right><?lsmb ordtotal ?></th> @@ -194,10 +194,10 @@ <td> <table width="100%"> <tr valign=top> - <?lsmb if notes ?> + <?lsmb IF notes ?> <td>Notes</td> <td><?lsmb notes ?></td> - <?lsmb end notes ?> + <?lsmb END ?> <td align=right nowrap> All prices in <?lsmb currency ?> Funds</b> </td> |