Accounting Software
Small Business Software Estimating Software
Time Tracking SoftwareTime Management SoftwareTime Billing SoftwareContact Management SoftwareCustomer Management SoftwareProject Management SoftwareBusiness Management Software

Purchase Tables (Header)

Link to: source code | tables directory

Copyright Turtle Creek Software 1996-2006. All Rights Reserved.

This class manages purchase breakdown tables for the Goldenseal accounting software,
small business management software, construction project management software and
construction accounting software.

/***********************************************************************************
CPurchaseBreakdownTable-- table showing Accounts Payable Software items
***********************************************************************************/
class CPurchaseBreakdownTable : public CTransactionBreakdownTable
{
public:

enum { class_ID = 'PCBT' };

CPurchaseBreakdownTable(const SPaneInfo &inPaneInfo, const SViewInfo &inViewInfo,
DB_ClassDescriptor *desc)
: CTransactionBreakdownTable(inPaneInfo, inViewInfo, desc) {}
virtual ~CPurchaseBreakdownTable() {}

virtual CMoney RecalcBreakdownRow(const TableIndexT row, const TagType changedCol);

virtual UInt8 GetDetailTransactionClass(const TableIndexT row) const;

virtual SInt32 GetColType(const TableIndexT row, const TableIndexT col) const;

protected:

};