Topic: Labour and Overhead Cost
Hi, i want to ask what the use of these features? i meant Labour and Overhead Cost in Items Standard Costs? where can i see something like why these two is important? thanks
It's much more fun, when you can discuss your problems with others...
You are not logged in. Please login or register.
FrontAccounting forum → Items and Inventory → Labour and Overhead Cost
Hi, i want to ask what the use of these features? i meant Labour and Overhead Cost in Items Standard Costs? where can i see something like why these two is important? thanks
You can look at the stock_master table:
CREATE TABLE `0_stock_master` (
`stock_id` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`category_id` int(11) NOT NULL DEFAULT '0',
`tax_type_id` int(11) NOT NULL DEFAULT '0',
`description` varchar(200) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`long_description` tinytext COLLATE utf8_unicode_ci NOT NULL,
`units` varchar(20) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'each',
`mb_flag` char(1) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'B',
`sales_account` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`cogs_account` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`inventory_account` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`adjustment_account` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`assembly_account` varchar(15) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
`dimension_id` int(11) DEFAULT NULL,
`dimension2_id` int(11) DEFAULT NULL,
`actual_cost` double NOT NULL DEFAULT '0',
`last_cost` double NOT NULL DEFAULT '0',
`material_cost` double NOT NULL DEFAULT '0',
`labour_cost` double NOT NULL DEFAULT '0',
`overhead_cost` double NOT NULL DEFAULT '0',
`inactive` tinyint(1) NOT NULL DEFAULT '0',
`no_sale` tinyint(1) NOT NULL DEFAULT '0',
`editable` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`stock_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
FrontAccounting forum → Items and Inventory → Labour and Overhead Cost
Powered by PunBB, supported by Informer Technologies, Inc.
Currently installed 4 official extensions. Copyright © 2003–2009 PunBB.