#
# AddStorageCharge( Package Filter, <-- Package Filter
# Customer Filter, <-- Customer Filter value e.g. ACME or AC*
# Media Filter, <-- Media Filter value e.g. DL or D* or !(AI)
# Rep Filter, <-- Repository filter e.g. OFFS
# Round Up Factor, <-- Round up factor e.g. if 10 number will be rounded up to nearest 10
# Minumum Units, <-- Minimum units to bill
# Threshold, <-- Theshold value, only totals over this value are billed
# Cap, <-- Cap Value
# Model, <-- Model number
# Item Code, <-- Item code string
# Customer, <-- Customer string
# Description, <-- Description string
# Cost, <-- Cost in cents
# Continue <-- continue on and bill next item if appropriate (0=No, !0=Yes)
# );
#
# AddMovementCharge( Package Filter, <-- Package Filter
# Customer Filter, <-- Customer Filter value e.g. ACME or AC*
# Media Filter, <-- Media Filter value e.g. DL or D* or !(AI)
# From Rep Filter, <-- Repository filter e.g. OFFS
# To Rep Filter, <-- Repository filter e.g. LIBR
# Round Up Factor, <-- Round up factor e.g. if 10 number will be rounded up to nearest 10
# Minumum Units, <-- Minimum units to bill
# Threshold, <-- Theshold value, only totals over this value are billed
# Cap, <-- Cap Value
# Model, <-- Model number
# Item Code, <-- Item code string
# Customer, <-- Customer string
# Description, <-- Description string
# Cost, <-- Cost in cents
# Continue <-- continue on and bill next item if appropriate (0=No, !0=Yes)
# );
#
# AddJournalCharge( Package Filter, <-- Package Filter
# Customer Filter, <-- Customer Filter value e.g. ACME or AC*
# Journal Filter, <-- Journal Filter value e.g. 000001
# Round Up Factor, <-- Round up factor e.g. if 10 number will be rounded up to nearest 10
# Minumum Units, <-- Minimum units to bill
# Threshold, <-- Theshold value, only totals over this value are billed
# Cap, <-- Cap Value
# Model, <-- Model number
# Item Code, <- Item code string
# Customer, <-- Customer string
# Description, <-- Description string
# Cost, <-- Cost in cents
# Continue <- continue on and bill next item if appropriate (0=No, !0=Yes)
# );
#
AddAppendFile("Package_Lite", "*", "Lite_Extras.txt");
AddAppendFile("Package_Standard" ,"*", "Standard_Extras.txt");
AddAppendFile("Package_Ultimate" ,"*", "Ultimate_Extras.txt");
#
AddStorageChargeItem("*", "*", "TMS", 0, 0, 00000, 00000, 0, "$CUSTOMER2", "QUICKBOOKS_STORAGE", "Onsite Inventory Charge", 1, 1);
AddStorageChargeItem("*", "*", "TMS", 0, 0, 20000, 00000, 0, "$CUSTOMER2", "QUICKBOOKS_STORAGE", "Overhang Storage Charge", 5, 1);
AddStorageChargeItem("*", "*", "TMS", 0, 0, 10000, 10000, 0, "$CUSTOMER2", "QUICKBOOKS_STORAGE", "Extra Storage $CUSTOMER Charge", 8, 1);
AddStorageChargeItem("*", "*", "TMS", 0, 0, 00000, 10000, 0, "$CUSTOMER2", "QUICKBOOKS_STORAGE", "Basic Storage Charge", 10, 1);
#
AddMovementChargeItem("*", "*", "INIT", "TMS", 0, 0, 0, 0, 0, "$CUSTOMER2", "QUICKBOOKS_INIT", "Barcode Charge", 100, 1);
AddMovementChargeItem("*", "*", "*", "TMS", 0, 0, 0, 0, 0, "$CUSTOMER2", "QUICKBOOKS_MOVEMENT", "Movement Charge", 10, 1);
#
AddJournalChargeItem("*", "00001", 0, 0, 00000, 10000, 0, "$CUSTOMER2", "QUICKBOOKS_JOURNAL", "Basic Journal", 10, 1);
|