/**
* ***************************************************************************
* Copyright (c) 2010 Qcadoo Limited
* Project: Qcadoo MES
* Version: 1.4
*
* This file is part of Qcadoo.
*
* Qcadoo is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation; either version 3 of the License,
* or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
* ***************************************************************************
*/
package com.qcadoo.mes.costCalculation.constants;
public final class CostCalculationFields {
private CostCalculationFields() {
}
public static final String TECHNICAL_PRODUCTION_COSTS = "technicalProductionCosts";
public static final String NUMBER = "number";
public static final String PRODUCT = "product";
public static final String ORDER = "order";
public static final String QUANTITY = "quantity";
public static final String DEFAULT_TECHNOLOGY = "defaultTechnology";
public static final String TECHNOLOGY = "technology";
public static final String PRODUCTION_LINE = "productionLine";
public static final String CALCULATE_MATERIAL_COSTS_MODE = "calculateMaterialCostsMode";
public static final String SOURCE_OF_OPERATION_COSTS = "sourceOfOperationCosts";
public static final String CALCULATION_OPERATION_COMPONENTS = "calculationOperationComponents";
public static final String MATERIAL_COST_MARGIN = "materialCostMargin";
public static final String TOTAL_MATERIAL_COSTS = "totalMaterialCosts";
public static final String TOTAL_MACHINE_HOURLY_COSTS = "totalMachineHourlyCosts";
public static final String TOTAL_PIECEWORK_COSTS = "totalPieceworkCosts";
public static final String TOTAL_LABOR_HOURLY_COSTS = "totalLaborHourlyCosts";
public static final String TOTAL_TECHNICAL_PRODUCTION_COSTS = "totalTechnicalProductionCosts";
public static final String PRODUCTION_COST_MARGIN = "productionCostMargin";
public static final String PRODUCTION_COST_MARGIN_VALUE = "productionCostMarginValue";
public static final String MATERIAL_COST_MARGIN_VALUE = "materialCostMarginValue";
public static final String ADDITIONAL_OVERHEAD = "additionalOverhead";
public static final String ADDITIONAL_OVERHEAD_VALUE = "additionalOverheadValue";
public static final String REGISTRATION_PRICE_OVERHEAD = "registrationPriceOverhead";
public static final String REGISTRATION_PRICE_OVERHEAD_VALUE = "registrationPriceOverheadValue";
public static final String PROFIT = "profit";
public static final String PROFIT_VALUE = "profitValue";
public static final String SELL_PRICE_VALUE = "sellPriceValue";
public static final String TOTAL_OVERHEAD = "totalOverhead";
public static final String TOTAL_COSTS = "totalCosts";
public static final String TOTAL_COST_PER_UNIT = "totalCostPerUnit";
public static final String DESCRIPTION = "description";
public static final String INCLUDE_TPZ = "includeTPZ";
public static final String INCLUDE_ADDITIONAL_TIME = "includeAdditionalTime";
public static final String PRINT_COST_NORMS_OF_MATERIALS = "printCostNormsOfMaterials";
public static final String PRINT_OPERATION_NORMS = "printOperationNorms";
public static final String SOURCE_OF_MATERIAL_COSTS = "sourceOfMaterialCosts";
public static final String CALCULATE_OPERATION_COSTS_MODE = "calculateOperationCostsMode";
public static final String DATE = "date";
public static final String GENERATED = "generated";
public static final String FILE_NAME = "fileName";
public static final String COMPONENT_COST = "componentCosts";
public static final String SAVE_COSTS = "saveCosts";
public static final String NOMINAL_COSTS = "nominalCosts";
}