public void showCopyOfTechnology(
      final ViewDefinitionState view, final ComponentState state, final String[] args) {
    Long orderId = (Long) state.getFieldValue();

    if (orderId != null) {
      Entity order =
          dataDefinitionService
              .get(OrdersConstants.PLUGIN_IDENTIFIER, OrdersConstants.MODEL_ORDER)
              .get(orderId);

      if (OrderType.WITH_PATTERN_TECHNOLOGY
              .getStringValue()
              .equals(order.getField(OrderFields.ORDER_TYPE))
          && (order.getBelongsToField(OrderFields.TECHNOLOGY_PROTOTYPE) == null)) {
        state.addMessage("order.technology.patternTechnology.not.set", MessageType.INFO);

        return;
      }

      Long technologyId = order.getBelongsToField(OrderFields.TECHNOLOGY).getId();
      Map<String, Object> parameters = Maps.newHashMap();
      parameters.put("form.id", technologyId);

      String url = "../page/orders/copyOfTechnologyDetails.html";
      view.redirectTo(url, false, true, parameters);
    }
  }
Ejemplo n.º 2
0
  public void showStoppage(
      final ViewDefinitionState viewDefinitionState,
      final ComponentState triggerState,
      final String[] args) {
    Long orderId = (Long) triggerState.getFieldValue();

    if (orderId != null) {
      String url = "../page/stoppage/stoppage.html?context={\"order.id\":\"" + orderId + "\"}";
      viewDefinitionState.openModal(url);
    }
  }
  public void copyTimeNormsFromOperation(
      final ViewDefinitionState view,
      final ComponentState operationLookupState,
      final String[] args) {

    ComponentState operationLookup = view.getComponentByReference(OPERATION);
    if (operationLookup.getFieldValue() == null) {
      if (!OPERATION.equals(operationLookupState.getName())) {
        view.getComponentByReference("form")
            .addMessage("productionTimeNorms.messages.info.missingOperationReference", INFO);
      }
      return;
    }

    Entity operation =
        dataDefinitionService
            .get(TechnologiesConstants.PLUGIN_IDENTIFIER, TechnologiesConstants.MODEL_OPERATION)
            .get((Long) operationLookup.getFieldValue());

    applyTimeNormsFromGivenSource(view, operation, FIELDS_OPERATION);
  }
  @Test
  public void shouldntShowChangeoverIfOrderIdIsNull() {
    // given
    given(componentState.getFieldValue()).willReturn(null);

    String url = "../page/lineChangeoverNormsForOrders/lineChangeoverNormsForOrderDetails.html";

    // when
    orderDetailsListenersLCNFO.showChangeover(view, componentState, null);

    // then
    verify(view, never()).redirectTo(url, false, true, parameters);
  }
Ejemplo n.º 5
0
  public void showOperationsGantt(
      final ViewDefinitionState viewDefinitionState,
      final ComponentState triggerState,
      final String[] args) {
    orderId = (Long) triggerState.getFieldValue();

    if (orderId != null) {
      String url =
          "../page/ganttForOperations/ganttForOperations.html?context={\"gantt.orderId\":\""
              + orderId
              + "\"}";

      viewDefinitionState.redirectTo(url, false, true);
    }
  }
  @Transactional
  public void generateSimpleMaterialBalance(
      final ViewDefinitionState viewDefinitionState,
      final ComponentState state,
      final String[] args) {
    if (state instanceof FormComponent) {
      ComponentState generated = viewDefinitionState.getComponentByReference(L_GENERATED);
      ComponentState date = viewDefinitionState.getComponentByReference(L_DATE);
      ComponentState worker = viewDefinitionState.getComponentByReference(L_WORKER);

      Entity simpleMaterialBalance =
          dataDefinitionService
              .get(
                  SimpleMaterialBalanceConstants.PLUGIN_IDENTIFIER,
                  SimpleMaterialBalanceConstants.MODEL_SIMPLE_MATERIAL_BALANCE)
              .get((Long) state.getFieldValue());

      if (simpleMaterialBalance == null) {
        state.addMessage("qcadooView.message.entityNotFound", MessageType.FAILURE);
        return;
      } else if (StringUtils.hasText(simpleMaterialBalance.getStringField(L_FILE_NAME))) {
        state.addMessage(
            "simpleMaterialBalance.simpleMaterialBalanceDetails.window.simpleMaterialBalance.documentsWasGenerated",
            MessageType.FAILURE);
        return;
      } else if (simpleMaterialBalance
          .getHasManyField(L_SIMPLE_MATERIAL_BALANCE_ORDERS_COMPONENTS)
          .isEmpty()) {
        state.addMessage(
            "simpleMaterialBalance.simpleMaterialBalance.window.simpleMaterialBalance.missingAssosiatedOrders",
            MessageType.FAILURE);
        return;
      } else if (simpleMaterialBalance
          .getHasManyField(L_SIMPLE_MATERIAL_BALANCE_LOCATIONS_COMPONENTS)
          .isEmpty()) {
        state.addMessage(
            "simpleMaterialBalance.simpleMaterialBalance.window.simpleMaterialBalance.missingAssosiatedLocations",
            MessageType.FAILURE);
        return;
      }

      if ("0".equals(generated.getFieldValue())) {
        worker.setFieldValue(securityService.getCurrentUserName());
        generated.setFieldValue("1");
        date.setFieldValue(
            new SimpleDateFormat(DateUtils.L_DATE_TIME_FORMAT, LocaleContextHolder.getLocale())
                .format(new Date()));
      }

      state.performEvent(viewDefinitionState, "save", new String[0]);

      if (state.getFieldValue() == null || !((FormComponent) state).isValid()) {
        worker.setFieldValue(null);
        generated.setFieldValue("0");
        date.setFieldValue(null);
        return;
      }

      simpleMaterialBalance =
          dataDefinitionService
              .get(
                  SimpleMaterialBalanceConstants.PLUGIN_IDENTIFIER,
                  SimpleMaterialBalanceConstants.MODEL_SIMPLE_MATERIAL_BALANCE)
              .get((Long) state.getFieldValue());

      try {
        generateSimpleMaterialBalanceDocuments(state, simpleMaterialBalance);
        state.performEvent(viewDefinitionState, "reset", new String[0]);
      } catch (IOException e) {
        throw new IllegalStateException(e.getMessage(), e);
      } catch (DocumentException e) {
        throw new IllegalStateException(e.getMessage(), e);
      }
    }
  }