Skip to content

Commit

Permalink
#4567 improvements and cleanup in processes names
Browse files Browse the repository at this point in the history
  • Loading branch information
metas-rc committed Sep 18, 2018
1 parent c33710a commit 0f4dd89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
import java.util.Comparator;
import java.util.List;

import javax.annotation.OverridingMethodsMustInvokeSuper;

import org.adempiere.util.Services;

import com.google.common.collect.ImmutableList;
Expand Down Expand Up @@ -54,7 +56,8 @@
* @author metas-dev <dev@metasfresh.com>
*
*/
public class WEBUI_M_HU_MoveToAnotherWarehouse_Helper extends HUEditorProcessTemplate implements IProcessPrecondition

public abstract class WEBUI_M_HU_MoveToAnotherWarehouse_Helper extends HUEditorProcessTemplate implements IProcessPrecondition
{
private final transient IHandlingUnitsDAO handlingUnitsDAO = Services.get(IHandlingUnitsDAO.class);
private final transient IHUMovementBL huMovementBL = Services.get(IHUMovementBL.class);
Expand All @@ -67,6 +70,7 @@ public class WEBUI_M_HU_MoveToAnotherWarehouse_Helper extends HUEditorProcessTem
private I_M_Warehouse warehouse;

@Override
@OverridingMethodsMustInvokeSuper
protected ProcessPreconditionsResolution checkPreconditionsApplicable()
{
if (!isHUEditorView())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* This process is completely similar with the basic structure for HU moving process.
*
*/
public class WEBUI_M_HU_MoveToAnotherWarehouse_QA extends WEBUI_M_HU_MoveToAnotherWarehouse_Helper
public class WEBUI_M_HU_MoveToAnotherWarehouse_InclQuarantined extends WEBUI_M_HU_MoveToAnotherWarehouse_Helper
{

}

0 comments on commit 0f4dd89

Please sign in to comment.