public void copyRealizationTime( final ViewDefinitionState view, final ComponentState state, final String[] args) { FieldComponent generatedEndDateField = (FieldComponent) view.getComponentByReference(OrderFieldsPS.GENERATED_END_DATE); FieldComponent stopTimeField = (FieldComponent) view.getComponentByReference(L_STOP_TIME); stopTimeField.setFieldValue(generatedEndDateField.getFieldValue()); state.performEvent(view, "save", new String[0]); }
public void setFieldsEnabledWhenTypeIsSpecific(final ViewDefinitionState view) { FieldComponent occupationType = (FieldComponent) view.getComponentByReference(OCCUPATION_TYPE); if (occupationType.getFieldValue() != null) { Entity dictionaryItem = findDictionaryItemByName(occupationType.getFieldValue().toString()); if (dictionaryItem == null) { setFieldsEnabled(view, false, false); } else { String occupationTypeTechnicalCode = dictionaryItem.getStringField(TECHNICAL_CODE); if (WORK_ON_LINE.getStringValue().equals(occupationTypeTechnicalCode)) { setFieldsEnabled(view, true, false); } else if (OTHER_CASE.getStringValue().equals(occupationTypeTechnicalCode)) { setFieldsEnabled(view, false, true); } else { setFieldsEnabled(view, false, false); } } } }
public void onProductionInOneCycleCheckboxChange( final ViewDefinitionState viewDefinitionState, final ComponentState state, final String[] args) { FieldComponent areProductQuantitiesDivisible = (FieldComponent) viewDefinitionState.getComponentByReference(ARE_PRODUCT_QUANTITIES_DIVISIBLE); FieldComponent isTjDivisible = (FieldComponent) viewDefinitionState.getComponentByReference(IS_TJ_DIVISIBLE); if ("1".equals(areProductQuantitiesDivisible.getFieldValue())) { isTjDivisible.setEnabled(true); } else { isTjDivisible.setEnabled(false); isTjDivisible.setFieldValue("0"); } }
public void setOccupationTypeToDefault(final ViewDefinitionState view) { FormComponent staffAssignmentToShiftForm = (FormComponent) view.getComponentByReference("form"); FieldComponent occupationType = (FieldComponent) view.getComponentByReference(OCCUPATION_TYPE); if ((staffAssignmentToShiftForm.getEntityId() == null) && (occupationType.getFieldValue() == null)) { Entity dictionaryItem = findDictionaryItemByTechnicalCode(WORK_ON_LINE.getStringValue()); if (dictionaryItem != null) { String occupationTypeName = dictionaryItem.getStringField(NAME); occupationType.setFieldValue(occupationTypeName); occupationType.requestComponentUpdateState(); } } }
public void fillUnitField( final ViewDefinitionState viewDefinitionState, final String fieldName, final boolean inProduct) { checkArgument(viewDefinitionState != null, L_VIEW_DEFINITION_STATE_IS_NULL); FormComponent form = (FormComponent) viewDefinitionState.getComponentByReference(L_FORM); FieldComponent unitField = (FieldComponent) viewDefinitionState.getComponentByReference(fieldName); unitField.setFieldValue(L_EMPTY); unitField.setEnabled(false); if (form == null || form.getEntityId() == null) { return; } Long productId = null; if (inProduct) { productId = (Long) form.getFieldValue(); } else { FieldComponent productField = (FieldComponent) viewDefinitionState.getComponentByReference("product"); if (productField == null) { return; } productId = (Long) productField.getFieldValue(); } Entity product = dataDefinitionService .get(BasicConstants.PLUGIN_IDENTIFIER, BasicConstants.MODEL_PRODUCT) .get(productId); if (product == null) { return; } String unit = product.getStringField(UNIT); fillField(unitField, unit); }
public void changeNextOperationAfterProducedTypeNorm( final ViewDefinitionState viewDefinitionState, final ComponentState state, final String[] args) { FieldComponent nextOperationAfterProducedType = (FieldComponent) viewDefinitionState.getComponentByReference(NEXT_OPERATION_AFTER_PRODUCED_TYPE); FieldComponent nextOperationAfterProducedQuantity = (FieldComponent) viewDefinitionState.getComponentByReference(NEXT_OPERATION_AFTER_PRODUCED_QUANTITY); FieldComponent nextOperationAfterProducedQuantityUNIT = (FieldComponent) viewDefinitionState.getComponentByReference( TechnologyOperCompTNFOFields.NEXT_OPERATION_AFTER_PRODUCED_QUANTITY_UNIT); Boolean visibilityValue = "02specified".equals(nextOperationAfterProducedType.getFieldValue()); nextOperationAfterProducedQuantity.setVisible(visibilityValue); nextOperationAfterProducedQuantity.setEnabled(visibilityValue); nextOperationAfterProducedQuantityUNIT.setVisible(visibilityValue); }
private boolean isGenerated(final ViewDefinitionState view) { FieldComponent generatedEndDateField = (FieldComponent) view.getComponentByReference(L_GENERATED_END_DATE); return !StringUtils.isEmpty((String) generatedEndDateField.getFieldValue()); }
@Transactional public void generateRealizationTime( final ViewDefinitionState viewDefinitionState, final ComponentState state, final String[] args) { FormComponent orderForm = (FormComponent) viewDefinitionState.getComponentByReference(L_FORM); FieldComponent startTimeField = (FieldComponent) viewDefinitionState.getComponentByReference(L_START_TIME); if (!StringUtils.hasText((String) startTimeField.getFieldValue())) { startTimeField.addMessage(L_PRODUCTION_SCHEDULING_ERROR_FIELD_REQUIRED, MessageType.FAILURE); return; } FieldComponent plannedQuantityField = (FieldComponent) viewDefinitionState.getComponentByReference(OrderFields.PLANNED_QUANTITY); FieldComponent productionLineLookup = (FieldComponent) viewDefinitionState.getComponentByReference(OrderFields.PRODUCTION_LINE); FieldComponent generatedEndDateField = (FieldComponent) viewDefinitionState.getComponentByReference(OrderFieldsPS.GENERATED_END_DATE); FieldComponent includeTpzField = (FieldComponent) viewDefinitionState.getComponentByReference(OrderFieldsPS.INCLUDE_TPZ); FieldComponent includeAdditionalTimeField = (FieldComponent) viewDefinitionState.getComponentByReference(OrderFieldsPS.INCLUDE_ADDITIONAL_TIME); boolean isGenerated = false; Entity productionLine = dataDefinitionService .get( ProductionLinesConstants.PLUGIN_IDENTIFIER, ProductionLinesConstants.MODEL_PRODUCTION_LINE) .get((Long) productionLineLookup.getFieldValue()); Entity order = dataDefinitionService .get(OrdersConstants.PLUGIN_IDENTIFIER, OrdersConstants.MODEL_ORDER) .get(orderForm.getEntity().getId()); // copy of technology from order Entity technology = order.getBelongsToField(OrderFields.TECHNOLOGY); Validate.notNull(technology, "technology is null"); BigDecimal quantity = orderRealizationTimeService.getBigDecimalFromField( plannedQuantityField.getFieldValue(), viewDefinitionState.getLocale()); // Included in work time Boolean includeTpz = "1".equals(includeTpzField.getFieldValue()); Boolean includeAdditionalTime = "1".equals(includeAdditionalTimeField.getFieldValue()); final Map<Long, BigDecimal> operationRuns = Maps.newHashMap(); productQuantitiesService.getProductComponentQuantities(technology, quantity, operationRuns); OperationWorkTime workTime = operationWorkTimeService.estimateTotalWorkTimeForOrder( order, operationRuns, includeTpz, includeAdditionalTime, productionLine, true); fillWorkTimeFields(viewDefinitionState, workTime); order = getActualOrderWithChanges(order); int maxPathTime = orderRealizationTimeService.estimateMaxOperationTimeConsumptionForWorkstation( technology.getTreeField(TechnologyFields.OPERATION_COMPONENTS).getRoot(), quantity, includeTpz, includeAdditionalTime, productionLine); if (maxPathTime > OrderRealizationTimeService.MAX_REALIZATION_TIME) { state.addMessage("orders.validate.global.error.RealizationTimeIsToLong", MessageType.FAILURE); generatedEndDateField.setFieldValue(null); } else { order.setField(OrderFieldsPS.REALIZATION_TIME, maxPathTime); Date startTime = order.getDateField(OrderFields.DATE_FROM); if (startTime == null) { startTimeField.addMessage( "orders.validate.global.error.dateFromIsNull", MessageType.FAILURE); } else { Date stopTime = shiftsService.findDateToForOrder(startTime, maxPathTime); if (stopTime == null) { orderForm.addMessage("productionScheduling.timenorms.isZero", MessageType.FAILURE, false); generatedEndDateField.setFieldValue(null); } else { generatedEndDateField.setFieldValue(orderRealizationTimeService.setDateToField(stopTime)); order.setField( OrderFieldsPS.GENERATED_END_DATE, orderRealizationTimeService.setDateToField(stopTime)); scheduleOrder(order.getId()); isGenerated = true; } orderForm.addMessage( "orders.dateFrom.info.dateFromSetToFirstPossible", MessageType.INFO, false); } order = order.getDataDefinition().save(order); orderForm.setEntity(order); } generatedEndDateField.requestComponentUpdateState(); if (isGenerated) { orderForm.addMessage("productionScheduling.info.calculationGenerated", MessageType.SUCCESS); } }