tocWhen entering Bills, Control currently only supports one line for taxes (which is charged to the expense account “Sales Tax Paid” by default). This poses a problem in places where multiple sales taxes paid must be taxed. The most prevalent example of this among Cyrious customers are Canadian customers who need to track GST and potentially multiple PST taxes.
This How-To will present two work-arounds to this problem. Both start with the creation of a liability account for each tax account (e.g., “PST - Quebec”) and enter the taxes as line items. The first approach can be used immediately from that point on. The second approach requires a bit of “hacking” the system with a direct database manipulation, but provides a solution that is easier to use and less likely to produce errors.
SELECT ID, AccountName FROM GLAccount WHERE GLClassificationType = 2006* Locate the new Part in the GLAccount table with a query like:
SELECT ID, ItemName, ModifiedDate, ExpenseAccountID FROM Part WHERE ItemName = 'Enter Tax Part Name'* Change the ExpenseAccountID of the Part to the appropriate Tax Account directly in the table or with a query like:
UPDATE Part SET ExpenseAccountID = xxxx WHERE PartID = yyyy
Contributor: Cyrious Software
Date: 10/26/2009
Version: Control 4.3+