Changeset 205 for trunk/phpbms/modules/bms/report/invoices_totals.php
- Timestamp:
- 03/26/07 16:50:25 (5 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/bms/report/invoices_totals.php
r204 r205 85 85 86 86 function showReportTable(){ 87 ?><table border= 0 cellspacing=0 cellpadding=0>87 ?><table border="0" cellspacing="0" cellpadding="0"> 88 88 <tr> 89 89 <th> </th> 90 90 <?php 91 91 foreach($this->selectcolumns as $name=>$column){ 92 ?><th align=right nowrap ><?php echo $name?></td><?php92 ?><th align=right nowrap="nowrap"><?php echo $name?></td><?php 93 93 }//end foreach 94 94 ?> … … 218 218 ?> 219 219 <tr><td colspan="<?php echo (count($this->selectcolumns)+1)?>" class="invoices" style="padding-right:40px;padding-left:<?php echo ($indent+2)?>px;"> 220 <table border= 0 cellspacing=0 cellpadding=0style="border:0px;">220 <table border="0" cellspacing="0" cellpadding="0" style="border:0px;"> 221 221 <?php 222 222 … … 224 224 ?> 225 225 <tr> 226 <td width="65%" class="lineitems" nowrap ><?php echo $therecord["partnumber"]?> <?php echo $therecord["partname"]?></td>227 <td width="24%" class="lineitems" align="right" nowrap ><?php echo "\$".number_format($therecord["unitprice"],2)?></td>228 <td width="12%" class="lineitems" align="center" nowrap ><?php echo number_format($therecord["quantity"],2)?></td>229 <td width="24%" class="lineitems" align="right" nowrap ><?php echo "\$".number_format($therecord["extended"],2)?></td>226 <td width="65%" class="lineitems" nowrap="nowrap"><?php echo $therecord["partnumber"]?> <?php echo $therecord["partname"]?></td> 227 <td width="24%" class="lineitems" align="right" nowrap="nowrap"><?php echo "\$".number_format($therecord["unitprice"],2)?></td> 228 <td width="12%" class="lineitems" align="center" nowrap="nowrap"><?php echo number_format($therecord["quantity"],2)?></td> 229 <td width="24%" class="lineitems" align="right" nowrap="nowrap"><?php echo "\$".number_format($therecord["extended"],2)?></td> 230 230 </tr> 231 231 <?php … … 368 368 <div class="bodyline" style="width:550px;padding:4px;"> 369 369 <h1>Invoice Total Options</h1> 370 <form action="<?php echo $_SERVER["PHP_SELF"]?>" method="post" name="totals" on Submit="return submitForm(this)">370 <form action="<?php echo $_SERVER["PHP_SELF"]?>" method="post" name="totals" onsubmit="return submitForm(this)"> 371 371 <div> 372 372 report title<br /> … … 375 375 <div class="box"> 376 376 <strong>Grouping</strong><br /> 377 <table border= 0 cellspacing=0 cellpadding=0>377 <table border="0" cellspacing="0" cellpadding="0"> 378 378 <tr> 379 379 <td width="50%"> … … 385 385 <td> 386 386 <div><br /> 387 <input type="button" value="<<" class="Buttons" on Click="moveItem('groupings','to',this.form);"><br /><br />388 <input type="button" value=">>" class="Buttons" on Click="moveItem('groupings','from',this.form);">387 <input type="button" value="<<" class="Buttons" onclick="moveItem('groupings','to',this.form);"><br /><br /> 388 <input type="button" value=">>" class="Buttons" onclick="moveItem('groupings','from',this.form);"> 389 389 </div> 390 390 </td> … … 420 420 <div class="box"> 421 421 <strong>Columns</strong><br /> 422 <table border= 0 cellspacing=0 cellpadding=0>422 <table border="0" cellspacing="0" cellpadding="0"> 423 423 <tr> 424 424 <td width="50%"> … … 431 431 <td> 432 432 <div><br /> 433 <input type="button" value="<<" class="Buttons" on Click="moveItem('columns','to',this.form);"><br /><br />434 <input type="button" value=">>" class="Buttons" on Click="moveItem('columns','from',this.form);">433 <input type="button" value="<<" class="Buttons" onclick="moveItem('columns','to',this.form);"><br /><br /> 434 <input type="button" value=">>" class="Buttons" onclick="moveItem('columns','from',this.form);"> 435 435 </div> 436 436 </td> … … 465 465 information shown<br /> 466 466 <select name="showwhat"> 467 <option selected value="totals">Totals Only</option>467 <option selected="selected" value="totals">Totals Only</option> 468 468 <option value="invoices">Invoices</option> 469 469 <option value="lineitems">Invoices & Line Items</option> … … 475 475 <div align="right" class="box"> 476 476 <input name="command" type="submit" class="Buttons" id="print" value="print" style="width:75px;margin-right:3px;"> 477 <input name="cancel" type="button" class="Buttons" id="cancel" value="cancel" style="width:75px;" on Click="window.close();">477 <input name="cancel" type="button" class="Buttons" id="cancel" value="cancel" style="width:75px;" onclick="window.close();"> 478 478 </div> 479 479 </form>