/**
* ***************************************************************************
* 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.deliveries.hooks;
import static com.qcadoo.mes.deliveries.constants.DeliveryFields.DELIVERY_ADDRESS;
import static com.qcadoo.mes.deliveries.constants.DeliveryFields.DESCRIPTION;
import static com.qcadoo.mes.deliveries.constants.DeliveryFields.EXTERNAL_NUMBER;
import static com.qcadoo.mes.deliveries.constants.DeliveryFields.EXTERNAL_SYNCHRONIZED;
import static com.qcadoo.mes.deliveries.constants.DeliveryFields.STATE;
import static com.qcadoo.mes.deliveries.constants.DeliveryFields.LOCATION;
import static com.qcadoo.mes.deliveries.states.constants.DeliveryState.DRAFT;
import static com.qcadoo.mes.materialFlow.constants.LocationFields.TYPE;
import com.qcadoo.mes.basic.ParameterService;
import com.qcadoo.mes.materialFlow.constants.LocationType;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import com.qcadoo.mes.deliveries.DeliveriesService;
import com.qcadoo.mes.deliveries.ReservationService;
import com.qcadoo.mes.deliveries.constants.DeliveredProductFields;
import com.qcadoo.mes.deliveries.constants.DeliveryFields;
import com.qcadoo.mes.deliveries.states.constants.DeliveryStateChangeDescriber;
import com.qcadoo.mes.deliveries.states.constants.DeliveryStateStringValues;
import com.qcadoo.mes.deliveries.util.DeliveryPricesAndQuantities;
import com.qcadoo.mes.states.service.StateChangeEntityBuilder;
import com.qcadoo.model.api.DataDefinition;
import com.qcadoo.model.api.Entity;
import com.qcadoo.model.api.EntityList;
import com.qcadoo.model.api.NumberService;
import java.util.Objects;
@Service
public class DeliveryHooks {
@Autowired
private DeliveriesService deliveriesService;
@Autowired
private StateChangeEntityBuilder stateChangeEntityBuilder;
@Autowired
private DeliveryStateChangeDescriber describer;
@Autowired
private NumberService numberService;
@Autowired
private ParameterService parameterService;
@Autowired
private ReservationService reservationService;
public void onCreate(final DataDefinition deliveryDD, final Entity delivery) {
setInitialState(delivery);
setDeliveryAddressDefaultValue(delivery);
setDescriptionDefaultValue(delivery);
setLocationDefaultValue(deliveryDD, delivery);
}
public void onCopy(final DataDefinition deliveryDD, final Entity delivery) {
setInitialState(delivery);
clearFieldsOnCopy(delivery);
}
public void onView(final DataDefinition deliveryDD, final Entity delivery) {
fillOrderedAndDeliveredCumulatedQuantityAndCumulatedTotalPrice(delivery);
}
public void onSave(final DataDefinition deliveryDD, final Entity delivery) {
setStorageLocations(delivery);
}
private void setInitialState(final Entity delivery) {
stateChangeEntityBuilder.buildInitial(describer, delivery, DRAFT);
}
private void clearFieldsOnCopy(final Entity delivery) {
delivery.setField(STATE, DeliveryStateStringValues.DRAFT);
delivery.setField(EXTERNAL_NUMBER, null);
delivery.setField(EXTERNAL_SYNCHRONIZED, true);
}
private void setDeliveryAddressDefaultValue(final Entity delivery) {
String deliveryAddress = delivery.getStringField(DELIVERY_ADDRESS);
if (deliveryAddress == null) {
delivery.setField(DELIVERY_ADDRESS, deliveriesService.getDeliveryAddressDefaultValue());
}
}
private void setDescriptionDefaultValue(final Entity delivery) {
String description = delivery.getStringField(DESCRIPTION);
if (description == null) {
delivery.setField(DESCRIPTION, deliveriesService.getDescriptionDefaultValue());
}
}
private void fillOrderedAndDeliveredCumulatedQuantityAndCumulatedTotalPrice(final Entity delivery) {
DeliveryPricesAndQuantities pricesAndQntts = new DeliveryPricesAndQuantities(delivery, numberService);
delivery.setField(DeliveryFields.ORDERED_PRODUCTS_CUMULATED_QUANTITY, pricesAndQntts.getOrderedCumulatedQuantity());
delivery.setField(DeliveryFields.DELIVERED_PRODUCTS_CUMULATED_QUANTITY, pricesAndQntts.getDeliveredCumulatedQuantity());
delivery.setField(DeliveryFields.ORDERED_PRODUCTS_CUMULATED_TOTAL_PRICE, pricesAndQntts.getOrderedTotalPrice());
delivery.setField(DeliveryFields.DELIVERED_PRODUCTS_CUMULATED_TOTAL_PRICE, pricesAndQntts.getDeliveredTotalPrice());
}
public void setLocationDefaultValue(final DataDefinition deliveryDD, final Entity delivery) {
Entity location = delivery.getBelongsToField(LOCATION);
if (location == null) {
delivery.setField(LOCATION, parameterService.getParameter().getBelongsToField(LOCATION));
}
}
public boolean checkIfLocationIsWarehouse(final DataDefinition deliveryDD, final Entity delivery) {
Entity location = delivery.getBelongsToField(LOCATION);
if ((location != null) && !isLocationIsWarehouse(location)) {
delivery.addError(deliveryDD.getField(LOCATION), "delivery.validate.global.error.locationIsNotWarehouse");
return false;
}
return true;
}
private boolean isLocationIsWarehouse(final Entity location) {
return ((location != null) && LocationType.WAREHOUSE.getStringValue().equals(location.getStringField(TYPE)));
}
public boolean validate(final DataDefinition deliveryDD, final Entity delivery) {
return reservationService.validateDeliveryAgainstReservations(delivery);
}
private void setStorageLocations(Entity delivery) {
Entity location = delivery.getBelongsToField(DeliveryFields.LOCATION);
if (location == null) {
clearStorageLocations(delivery);
} else if (delivery.getId() != null) {
Entity locationFromDb = delivery.getDataDefinition().get(delivery.getId()).getBelongsToField(DeliveryFields.LOCATION);
if (locationFromDb == null || !Objects.equals(location.getId(), locationFromDb.getId())) {
clearStorageLocations(delivery);
}
}
}
private void clearStorageLocations(Entity delivery) {
EntityList deliveredProducts = delivery.getHasManyField(DeliveryFields.DELIVERED_PRODUCTS);
if (deliveredProducts != null) {
for (Entity deliveryProduct : deliveredProducts) {
deliveryProduct.setField(DeliveredProductFields.STORAGE_LOCATION, null);
deliveryProduct.getDataDefinition().save(deliveryProduct);
}
}
}
}