|
ZenCart_Documentation
1.5.0
http://www.collinsharper.com
|
00001 <?php 00002 // 00003 // +----------------------------------------------------------------------+ 00004 // |zen-cart Open Source E-commerce | 00005 // +----------------------------------------------------------------------+ 00006 // | Copyright (c) 2003 The zen-cart developers | 00007 // | | 00008 // | http://www.zen-cart.com/index.php | 00009 // | | 00010 // | Portions Copyright (c) 2003 osCommerce | 00011 // +----------------------------------------------------------------------+ 00012 // | This source file is subject to version 2.0 of the GPL license, | 00013 // | that is bundled with this package in the file LICENSE, and is | 00014 // | available through the world-wide-web at the following url: | 00015 // | http://www.zen-cart.com/license/2_0.txt. | 00016 // | If you did not receive a copy of the zen-cart license and are unable | 00017 // | to obtain it through the world-wide-web, please send a note to | 00018 // | [email protected] so we can mail you a copy immediately. | 00019 // +----------------------------------------------------------------------+ 00020 // $Id: invoice.php 5961 2007-03-03 17:17:39Z ajeh $ 00021 // 00022 00023 define('TABLE_HEADING_COMMENTS', 'Comments'); 00024 define('TABLE_HEADING_CUSTOMER_NOTIFIED', 'Customer Notified'); 00025 define('TABLE_HEADING_DATE_ADDED', 'Date Added'); 00026 define('TABLE_HEADING_STATUS', 'Status'); 00027 00028 define('TABLE_HEADING_PRODUCTS_MODEL', 'Model'); 00029 define('TABLE_HEADING_PRODUCTS', 'Products'); 00030 define('TABLE_HEADING_TAX', 'Tax'); 00031 define('TABLE_HEADING_TOTAL', 'Total'); 00032 define('TABLE_HEADING_PRICE_EXCLUDING_TAX', 'Price (ex)'); 00033 define('TABLE_HEADING_PRICE_INCLUDING_TAX', 'Price (inc)'); 00034 define('TABLE_HEADING_TOTAL_EXCLUDING_TAX', 'Total (ex)'); 00035 define('TABLE_HEADING_TOTAL_INCLUDING_TAX', 'Total (inc)'); 00036 00037 define('ENTRY_CUSTOMER', 'CUSTOMER:'); 00038 00039 define('ENTRY_SOLD_TO', 'SOLD TO:'); 00040 define('ENTRY_SHIP_TO', 'SHIP TO:'); 00041 define('ENTRY_PAYMENT_METHOD', 'Payment Method:'); 00042 define('ENTRY_SUB_TOTAL', 'Sub-Total:'); 00043 define('ENTRY_TAX', 'Tax:'); 00044 define('ENTRY_SHIPPING', 'Shipping:'); 00045 define('ENTRY_TOTAL', 'Total:'); 00046 define('ENTRY_DATE_PURCHASED', 'Date Ordered:'); 00047 00048 define('ENTRY_ORDER_ID','Invoice No. '); 00049 define('TEXT_INFO_ATTRIBUTE_FREE', ' - FREE'); 00050 ?>