Venture ERP Documentation : TableDefinitionPricingMatrix

Venture :: Categories :: PageIndex :: RecentChanges :: RecentlyCommented :: Login/Register
Return to: Database Reference Home Page
Return to: Table Definitions Master List

*Table Name*

pricing_matrix

*Description*

Pricing matrix

*Schema*

CREATE TABLE pricing_matrix (
    "company_id" int
        NOT NULL                  -- Company ID
        REFERENCES company_master (company_id),
    "customer_matrix" numeric(3,0)             -- Customer matrix
        NOT NULL,
    "item_matrix" numeric(3,0)                 -- Item matrix
        NOT NULL,
    "matrix_percent" numeric(4,2),             -- Matrix %
    "matrix_type" char(2)
        NOT NULL,                   -- Matrix type
                                             -- 'LP' - List +
                                             -- 'LM' - List -
                                             -- 'CP' - Cost +
    "description" varchar(64),                 -- Description
    "added_by" varchar(16),                    -- Employee code of who added record
PRIMARY KEY (company_id,customer_matrix,item_matrix)
);     

There are no comments on this page. [Add comment]

Valid XHTML 1.0 Transitional :: Valid CSS :: Powered by Wikka Wakka Wiki 1.1.6.3
Page was generated in 0.1584 seconds