Cleanup in types.inc
[fa-stable.git] / includes / sysnames.inc
index efb700ba8bbdd6d7607359ecaadce59696c31cc6..8d3bf78f0a78efbcf435e1c61dc79dcc7cb7cc44 100644 (file)
@@ -40,7 +40,12 @@ $systypes_array = array (
        ST_SALESORDER => _("Sales Order"),
        ST_SALESQUOTE => _("Sales Quotation"),
        ST_COSTUPDATE => _("Cost Update"),
-       ST_DIMENSION => _("Dimension")
+       ST_DIMENSION => _("Dimension"),
+       );
+
+$fa_systypes_array = array (
+       ST_INVADJUST => _("Fixed Assets Disposal"),
+       ST_COSTUPDATE => _("Fixed Assets Revaluation"),
        );
 
 $type_shortcuts = array(
@@ -151,12 +156,22 @@ $quick_entry_types = array(
        QE_SUPPINV => _("Supplier Invoice/Credit")
 );
 
+//----------------------------------------------------------------------------------
+// depreciation methods
+$depreciation_methods = array(
+  'D' => _("Declining balance"),
+  'S' => _("Straight line"),
+  'N' => _("Sum of the Year Digits"),
+  'O' => _("One-time"),
+);
+
 //----------------------------------------------------------------------------------
 // Types of stock items
 $stock_types = array(
        'M' => _("Manufactured"),
        'B' => _("Purchased"),
-       'D' => _("Service")
+       'D' => _("Service"),
+       'T' => _("Shipping")
 );
 
 //----------------------------------------------------------------------------------
@@ -177,7 +192,7 @@ $sys_crm_cats = array (
 //----------------------------------------------------------------------------------
 
 $pterm_types = array(
-       PTT_PRE => _("Prepayment"),
+       PTT_PREPAY => _("Prepayment"),
        PTT_CASH => _("Cash"),
        PTT_DAYS => _("After No. of Days"),
        PTT_FOLLOWING => _("Day In Following Month")