|
12 | 12 | $BookMark = 'ConfirmInvoice';
|
13 | 13 | include ('includes/header.php');
|
14 | 14 |
|
| 15 | +include ('includes/CurrenciesArray.php'); |
15 | 16 | include ('includes/SQL_CommonFunctions.inc');
|
16 | 17 | include ('includes/FreightCalculation.inc');
|
17 | 18 | include ('includes/GetSalesTransGLCodes.inc');
|
|
321 | 322 | if ($_SESSION['Items'.$identifier]->SpecialInstructions) {
|
322 | 323 | prnMsg($_SESSION['Items'.$identifier]->SpecialInstructions,'warn');
|
323 | 324 | }
|
324 |
| -echo '<p class="page_title_text"><img src="'.$RootPath.'/css/'.$Theme.'/images/inventory.png" title="' . _('Confirm Invoice') . |
325 |
| - '" alt="" />' . ' ' . _('Confirm Dispatch and Invoice'). '</p>'; |
326 |
| -echo '<table class="selection"> |
327 |
| - <tr> |
328 |
| - <th><img src="'.$RootPath.'/css/'.$Theme.'/images/customer.png" title="' . _('Customer') . '" alt="" />' . ' ' . _('Customer Code') . ' :<b> ' . $_SESSION['Items'.$identifier]->DebtorNo . '</b></th> |
329 |
| - <th>' . _('Customer Name') . ' :<b> ' . $_SESSION['Items'.$identifier]->CustomerName. '</b></th> |
330 |
| - </tr> |
331 |
| - <tr> |
332 |
| - <th colspan ="2"><b>' . _('Invoice amounts stated in') . ' ' . $_SESSION['Items'.$identifier]->DefaultCurrency . '</b></th> |
333 |
| - </tr> |
334 |
| - </table> |
335 |
| - <br />'; |
| 325 | + |
| 326 | +echo '<p class="page_title_text"><img alt="" src="', $RootPath, '/css/', $Theme, |
| 327 | + '/images/inventory.png" title="', // Icon image. |
| 328 | + _('Confirm Dispatch and Invoice'), '" /> ', // Icon title. |
| 329 | + _('Confirm Dispatch and Invoice'), '</p>', // Page title. |
| 330 | + '<table class="selection"> |
| 331 | + <tr> |
| 332 | + <td>', _('Customer Code'), '</td> |
| 333 | + <td class="text">', $_SESSION['Items'.$identifier]->DebtorNo, '</td> |
| 334 | + </tr> |
| 335 | + <tr> |
| 336 | + <td>', _('Customer Name'), '</td> |
| 337 | + <td class="text">', $_SESSION['Items'.$identifier]->CustomerName, '</td> |
| 338 | + </tr> |
| 339 | + <tr> |
| 340 | + <td>', _('Invoice amounts stated in'), '</td> |
| 341 | + <td class="text">', $_SESSION['Items'.$identifier]->DefaultCurrency, ' - ', $CurrencyName[$_SESSION['Items'.$identifier]->DefaultCurrency], '</td> |
| 342 | + </tr> |
| 343 | + </table> |
| 344 | + <br />'; |
336 | 345 |
|
337 | 346 | echo '<form action="' . htmlspecialchars($_SERVER['PHP_SELF'],ENT_QUOTES,'UTF-8') . '?identifier='.$identifier . '" method="post">';
|
338 | 347 | echo '<div>';
|
|
0 commit comments