Package org.openbravo.common.hooks
Class ConvertQuotationIntoOrderHook
- java.lang.Object
-
- org.openbravo.common.hooks.ConvertQuotationIntoOrderHook
-
public abstract class ConvertQuotationIntoOrderHook extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static String
CONVERT_QUOTATION_INTO_ORDER_HOOK_QUALIFIER
-
Constructor Summary
Constructors Constructor Description ConvertQuotationIntoOrderHook()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
exec(Order order)
Executes the hook logic on the ConvertQuotationIntoOrder processabstract int
getOrder()
Returns the order when the concrete hook will be executed.
-
-
-
Field Detail
-
CONVERT_QUOTATION_INTO_ORDER_HOOK_QUALIFIER
public static final String CONVERT_QUOTATION_INTO_ORDER_HOOK_QUALIFIER
- See Also:
- Constant Field Values
-
-
Method Detail
-
getOrder
public abstract int getOrder()
Returns the order when the concrete hook will be executed.
-
exec
public abstract void exec(Order order)
Executes the hook logic on the ConvertQuotationIntoOrder process- Parameters:
order
- the order document with lines we are creating from Quotation
-
-