X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fsysnames.inc;h=c5667300796c470f76ea0a1d8aeaedde971a2b0a;hb=577328a5a3a3d5cd6e2252798a355fa20a8f591e;hp=bf48ad9c5c0e3214713c99b77d67192711635fc9;hpb=40ee20a833a502a0914202b56473fb330d5774cf;p=fa-stable.git diff --git a/includes/sysnames.inc b/includes/sysnames.inc index bf48ad9c..c5667300 100644 --- a/includes/sysnames.inc +++ b/includes/sysnames.inc @@ -16,7 +16,7 @@ // global $systypes_array, $bank_account_types, $bank_transfer_types, $payment_person_types, $wo_types_array, $wo_cost_types, $class_types, - $quick_actions, $quick_entry_types, $stock_types, $tag_types; + $quick_actions, $quick_entry_types, $stock_types, $tag_types, $bank_owner; $systypes_array = array ( ST_JOURNAL => _("Journal Entry"), @@ -43,6 +43,32 @@ $systypes_array = array ( ST_DIMENSION => _("Dimension") ); +$type_shortcuts = array( + ST_JOURNAL => _("GJ"), // general journal + ST_BANKPAYMENT => _("BP"), + ST_BANKDEPOSIT => _("BD"), + ST_BANKTRANSFER => _("BT"), + ST_SALESINVOICE => _("SI"), + ST_CUSTCREDIT => _("CN"), + ST_CUSTPAYMENT => _("CP"), + ST_CUSTDELIVERY => _("DN"), + ST_LOCTRANSFER => _("IT"), // inventory transfer + ST_INVADJUST => _("IA"), + ST_PURCHORDER => _("PO"), + ST_SUPPINVOICE => _("PI"), // purchase invoice + ST_SUPPCREDIT => _("PC"), + ST_SUPPAYMENT => _("SP"), + ST_SUPPRECEIVE => _("GRN"), + ST_WORKORDER => _("WO"), + ST_MANUISSUE => _("WI"), + ST_MANURECEIVE => _("WP"), + ST_SALESORDER => _("SO"), + ST_SALESQUOTE => _("SQ"), + ST_COSTUPDATE => _("CU"), + ST_DIMENSION => _("Dim") +); + + //---------------------------------------------------------------------------------- // Bank transaction types // @@ -84,6 +110,7 @@ $wo_types_array = array ( $wo_cost_types = array( WO_LABOUR => _("Labour Cost"), WO_OVERHEAD => _("Overhead Cost"), + WO_MATERIALS => _("Materials") ); //---------------------------------------------------------------------------------- @@ -156,5 +183,19 @@ $pterm_types = array( PTT_FOLLOWING => _("Day In Following Month") ); +$tax_algorithms = array( + TCA_LINES => _("Sum per line taxes"), + TCA_TOTALS => _("Taxes from totals") +); +//---------------------------------------------------------------------------------- + +$bank_owner_types = array( + BO_UNKNOWN => _("Unknown"), + BO_COMPANY => _("Company"), + BO_CUSTBRANCH => _("Customer"), + BO_SUPPLIER => _("Supplier") +); + +// This month array is for use with the last 3 dateformats. +$tmonths = array("", _("Jan"),_("Feb"),_("Mar"),_("Apr"),_("May"),_("Jun"),_("Jul"),_("Aug"),_("Sep"),_("Oct"),_("Nov"),_("Dec")); -?> \ No newline at end of file