Changeset 706 for trunk/phpbms/modules/bms/invoices_addedit.php
- Timestamp:
- 01/03/10 21:33:53 (2 years ago)
- Files:
-
- 1 modified
-
trunk/phpbms/modules/bms/invoices_addedit.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/modules/bms/invoices_addedit.php
r704 r706 461 461 <th nowrap="nowrap" class="queryheader" align="left" id="memoHeader">memo</th> 462 462 <th align="right" nowrap="nowrap" class="queryheader">price</th> 463 <th align="center" nowrap="nowrap" class="queryheader">qty.</th> 464 <th align="right" nowrap="nowrap" class="queryheader">extended</th> 465 <th nowrap="nowrap" class="queryheader"> </th> 463 <th align="right" nowrap="nowrap" class="queryheader">qty.</th> 464 <th align="right" nowrap="nowrap" class="queryheader" colspan="2" id="liHeaderExtendedTd">extended</th> 466 465 </tr> 467 466 </thead> … … 474 473 <td align="right" nowrap="nowrap"><input name="price" type="text" id="price" value="<?php echo htmlQuotes(numberToCurrency(0))?>" size="10" maxlength="16" class="fieldCurrency" /></td> 475 474 <td align="center" nowrap="nowrap"><input name="qty" type="text" id="qty" value="1" size="5" maxlength="16" /></td> 476 <td align="right" nowrap="nowrap" ><input name="extended" type="text" id="extended" class="uneditable fieldCurrency" value="<?php echo htmlQuotes(numberToCurrency(0))?>" size="12" maxlength="16" readonly="readonly" /></td>477 <td nowrap="nowrap" align="left" ><button type="button" id="lineitemAddButton" class="graphicButtons buttonPlus" title="Add Line Item"><span>+</span></button></td>475 <td align="right" nowrap="nowrap"id="liAddExtendedTD"><input name="extended" type="text" id="extended" class="uneditable fieldCurrency" value="<?php echo htmlQuotes(numberToCurrency(0))?>" size="12" maxlength="16" readonly="readonly" /></td> 476 <td nowrap="nowrap" align="left" id="liAddButtonTd"><button type="button" id="lineitemAddButton" class="graphicButtons buttonPlus" title="Add Line Item"><span>+</span></button></td> 478 477 </tr><?php }//end if 479 478 … … 671 670 <td class="totalItems"> </td> 672 671 </tr> 673 <tr >672 <tr id="totalDisplayTr"> 674 673 <td colspan="2" class="invoiceTotalLabels important"><div>total</div></td> 675 674 <td class="totalItems"> … … 688 687 <td class="totalItems"><button id="payinfull" type="button" onclick="payInFull()" class="graphicButtons buttonCheck" title="Pay in full"><span>pay in full</span></button></td> 689 688 </tr> 690 <tr >689 <tr id="lastTotalsTr"> 691 690 <td colspan="2" class="invoiceTotalLabels" nowrap="nowrap"><div>amount due</div></td> 692 691 <td class="totalItems"><input id="amountdue" name="amountdue" type="text" value="<?php echo numberToCurrency($therecord["amountdue"]) ?>" size="12" maxlength="15" onchange="calculatePaidDue();" class="important fieldCurrency fieldTotal" /></td>