/** * *************************************************************************** * Copyright (c) 2010 Qcadoo Limited * Project: Qcadoo MES * Version: 1.4 * <p/> * This file is part of Qcadoo. * <p/> * 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. * <p/> * 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. * <p/> * 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.masterOrders.constants; public final class MasterOrderFields { private MasterOrderFields() { } public static final String ADDRESS = "address"; public static final String MASTER_ORDER_DEFINITION = "masterOrderDefinition"; public static final String NUMBER = "number"; public static final String NAME = "name"; public static final String DESCRIPTION = "description"; public static final String EXTERNAL_NUMBER = "externalNumber"; public static final String DEFAULT_TECHNOLOGY = "defaultTechnology"; public static final String DEADLINE = "deadline"; public static final String START_DATE = "startDate"; public static final String FINISH_DATE = "finishDate"; public static final String DATE_OF_RECIPT = "dateOfReceipt"; public static final String ADD_MASTER_PREFIX_TO_NUMBER = "addMasterPrefixToNumber"; public static final String MASTER_ORDER_QUANTITY = "masterOrderQuantity"; public static final String CUMULATED_ORDER_QUANTITY = "cumulatedOrderQuantity"; public static final String MASTER_ORDER_TYPE = "masterOrderType"; public static final String MASTER_ORDER_STATE = "masterOrderState"; public static final String COMPANY = "company"; public static final String PRODUCT = "product"; public static final String TECHNOLOGY = "technology"; public static final String EXTERNAL_SYNCHRONIZED = "externalSynchronized"; public static final String ORDERS = "orders"; public static final String MASTER_ORDER_PRODUCTS = "masterOrderProducts"; public static final String PRODUCED_ORDER_QUQNTITY = "producedOrderQuantity"; public static final String LEFT_TO_RELASE = "leftToRelease"; public static final String COOMENTS = "comments"; public static final String MASTER_ORDER_POSITION_STATUS = "masterOrderPositionStatus"; public static final String EXTERNAL_PRODUCTION_ORDER_ID = "externalProductionOrderID"; }