Class DefaultWarehousingConsignmentFacade
- java.lang.Object
-
- de.hybris.platform.ordermanagementfacades.OmsBaseFacade
-
- de.hybris.platform.warehousingfacades.order.impl.DefaultWarehousingConsignmentFacade
-
- All Implemented Interfaces:
WarehousingConsignmentFacade
public class DefaultWarehousingConsignmentFacade extends OmsBaseFacade implements WarehousingConsignmentFacade
Default implementation ofWarehousingConsignmentFacade.
-
-
Field Summary
Fields Modifier and Type Field Description protected static java.lang.StringCAPTURE_PAYMENT_ON_CONSIGNMENTprotected static java.lang.StringCONSIGNMENT_ACTION_EVENT_NAMEprotected static java.lang.StringCONSOLIDATED_PICK_SLIP_DOCUMENT_TEMPLATEprotected static java.lang.StringDECLINE_ENTRIESprotected static java.lang.StringEXPORT_FORM_DOCUMENT_TEMPLATEprotected static java.lang.StringHANDLE_MANUAL_PAYMENT_CAPTURE_CHOICEprotected static java.lang.StringHANDLE_MANUAL_TAX_COMMIT_CHOICEprotected static java.lang.StringPACK_CONSIGNMENT_CHOICEprotected static java.lang.StringPACK_SLIP_DOCUMENT_TEMPLATEprotected static java.lang.StringPACKING_TEMPLATE_CODEprotected static java.lang.StringPICK_SLIP_DOCUMENT_TEMPLATEprotected static java.lang.StringPICKING_TEMPLATE_CODEprotected static java.lang.StringREALLOCATE_CONSIGNMENT_CHOICEprotected static java.lang.StringRETURN_FORM_DOCUMENT_TEMPLATEprotected static java.lang.StringRETURN_SHIPPING_LABEL_DOCUMENT_TEMPLATEprotected static java.lang.StringSHIPPING_LABEL_DOCUMENT_TEMPLATE
-
Constructor Summary
Constructors Constructor Description DefaultWarehousingConsignmentFacade()
-
Method Summary
-
Methods inherited from class de.hybris.platform.ordermanagementfacades.OmsBaseFacade
convertSearchPageData, createPaginationData, discardOrderSnapshot, getModelService, getOrderGenericDao, getOrderModelForCode, setModelService, setOrderGenericDao
-
-
-
-
Field Detail
-
CONSIGNMENT_ACTION_EVENT_NAME
protected static final java.lang.String CONSIGNMENT_ACTION_EVENT_NAME
- See Also:
- Constant Field Values
-
REALLOCATE_CONSIGNMENT_CHOICE
protected static final java.lang.String REALLOCATE_CONSIGNMENT_CHOICE
- See Also:
- Constant Field Values
-
DECLINE_ENTRIES
protected static final java.lang.String DECLINE_ENTRIES
- See Also:
- Constant Field Values
-
PICK_SLIP_DOCUMENT_TEMPLATE
protected static final java.lang.String PICK_SLIP_DOCUMENT_TEMPLATE
- See Also:
- Constant Field Values
-
PICKING_TEMPLATE_CODE
protected static final java.lang.String PICKING_TEMPLATE_CODE
- See Also:
- Constant Field Values
-
CONSOLIDATED_PICK_SLIP_DOCUMENT_TEMPLATE
protected static final java.lang.String CONSOLIDATED_PICK_SLIP_DOCUMENT_TEMPLATE
- See Also:
- Constant Field Values
-
PACK_SLIP_DOCUMENT_TEMPLATE
protected static final java.lang.String PACK_SLIP_DOCUMENT_TEMPLATE
- See Also:
- Constant Field Values
-
PACKING_TEMPLATE_CODE
protected static final java.lang.String PACKING_TEMPLATE_CODE
- See Also:
- Constant Field Values
-
PACK_CONSIGNMENT_CHOICE
protected static final java.lang.String PACK_CONSIGNMENT_CHOICE
- See Also:
- Constant Field Values
-
EXPORT_FORM_DOCUMENT_TEMPLATE
protected static final java.lang.String EXPORT_FORM_DOCUMENT_TEMPLATE
- See Also:
- Constant Field Values
-
SHIPPING_LABEL_DOCUMENT_TEMPLATE
protected static final java.lang.String SHIPPING_LABEL_DOCUMENT_TEMPLATE
- See Also:
- Constant Field Values
-
RETURN_SHIPPING_LABEL_DOCUMENT_TEMPLATE
protected static final java.lang.String RETURN_SHIPPING_LABEL_DOCUMENT_TEMPLATE
- See Also:
- Constant Field Values
-
RETURN_FORM_DOCUMENT_TEMPLATE
protected static final java.lang.String RETURN_FORM_DOCUMENT_TEMPLATE
- See Also:
- Constant Field Values
-
CAPTURE_PAYMENT_ON_CONSIGNMENT
protected static final java.lang.String CAPTURE_PAYMENT_ON_CONSIGNMENT
- See Also:
- Constant Field Values
-
HANDLE_MANUAL_PAYMENT_CAPTURE_CHOICE
protected static final java.lang.String HANDLE_MANUAL_PAYMENT_CAPTURE_CHOICE
- See Also:
- Constant Field Values
-
HANDLE_MANUAL_TAX_COMMIT_CHOICE
protected static final java.lang.String HANDLE_MANUAL_TAX_COMMIT_CHOICE
- See Also:
- Constant Field Values
-
-
Method Detail
-
getConsignments
public SearchPageData<ConsignmentData> getConsignments(PageableData pageableData)
Description copied from interface:WarehousingConsignmentFacadeAPI to fetch all consignments in the system- Specified by:
getConsignmentsin interfaceWarehousingConsignmentFacade- Parameters:
pageableData- pageable object that contains info on the number or pages and how many items in each page in addition the sorting info- Returns:
- list of consignments
-
getConsignmentsByStatuses
public SearchPageData<ConsignmentData> getConsignmentsByStatuses(PageableData pageableData, java.util.Set<ConsignmentStatus> consignmentStatusSet)
Description copied from interface:WarehousingConsignmentFacadeAPI to fetch all consignments in the system that have certain status(es)- Specified by:
getConsignmentsByStatusesin interfaceWarehousingConsignmentFacade- Parameters:
pageableData- pageable object that contains info on the number or pages and how many items in each page in addition the sorting infoconsignmentStatusSet- set ofConsignmentStatus, in which we want to get list of consignments for- Returns:
- list of consignments that complies with passed consignment status(es)
-
getConsignmentEntriesForConsignmentCode
public SearchPageData<ConsignmentEntryData> getConsignmentEntriesForConsignmentCode(java.lang.String code, PageableData pageableData)
Description copied from interface:WarehousingConsignmentFacadeAPI to get consignmentEntries for the givenConsignmentModel.CODE- Specified by:
getConsignmentEntriesForConsignmentCodein interfaceWarehousingConsignmentFacade- Parameters:
code- the consignment's codepageableData- pageable object that contains info on the number or pages and how many items in each page in addition the sorting info- Returns:
- SearchPageData that contains a list of the consignmentEntries for the given consignment
-
getConsignmentForCode
public ConsignmentData getConsignmentForCode(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeAPI to return details of a single consignment according for the givenConsignmentModel.CODE.- Specified by:
getConsignmentForCodein interfaceWarehousingConsignmentFacade- Parameters:
code- the consignment's code.- Returns:
- Consignment details for the given consignment code
-
getConsignmentStatuses
public java.util.List<ConsignmentStatus> getConsignmentStatuses()
Description copied from interface:WarehousingConsignmentFacadeAPI to return all consignment statuses- Specified by:
getConsignmentStatusesin interfaceWarehousingConsignmentFacade- Returns:
- list of
ConsignmentStatus
-
getDeclineReasons
public java.util.List<DeclineReason> getDeclineReasons()
Description copied from interface:WarehousingConsignmentFacadeAPI to return all decline reasons.- Specified by:
getDeclineReasonsin interfaceWarehousingConsignmentFacade- Returns:
- a list of
DeclineReason
-
getSourcingLocationsForConsignmentCode
public SearchPageData<WarehouseData> getSourcingLocationsForConsignmentCode(java.lang.String code, PageableData pageableData)
Description copied from interface:WarehousingConsignmentFacadeAPI to return all warehouses fit for souring for the givenConsignmentModel.CODE.- Specified by:
getSourcingLocationsForConsignmentCodein interfaceWarehousingConsignmentFacade- Parameters:
code- the consignment codepageableData- pageable object that contains info on the number or pages and how many items in each page in addition the sorting info- Returns:
- SearchPageData that contains a list of locations fit for sourcing
-
confirmShipConsignment
public void confirmShipConsignment(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeConfirm Consignment's shipping- Specified by:
confirmShipConsignmentin interfaceWarehousingConsignmentFacade- Parameters:
code- theConsignmentModel.CODEfor theConsignmentModelto be shipped
-
confirmPickupConsignment
public void confirmPickupConsignment(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeConfirm Consignment's pick up- Specified by:
confirmPickupConsignmentin interfaceWarehousingConsignmentFacade- Parameters:
code- theConsignmentModel.CODEfor theConsignmentModelto be picked up
-
isConsignmentConfirmable
public boolean isConsignmentConfirmable(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeChecks if the confirm ship/pickup is possible for the givenConsignmentModel.CODE- Specified by:
isConsignmentConfirmablein interfaceWarehousingConsignmentFacade- Parameters:
code- the code for the consignment to be confirmed- Returns:
- boolean to indicate if confirmation of the given consignment is possible
-
getConsignmentPackagingInformation
public PackagingInfoData getConsignmentPackagingInformation(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeAPI to return the packaging information for the givenConsignmentModel.CODE.- Specified by:
getConsignmentPackagingInformationin interfaceWarehousingConsignmentFacade- Parameters:
code- the consignment code for which to retrieve the packaging information- Returns:
- the
PackagingInfoData
-
updateConsignmentPackagingInformation
public ConsignmentData updateConsignmentPackagingInformation(java.lang.String code, PackagingInfoData packagingInfoData)
Description copied from interface:WarehousingConsignmentFacadeAPI to update the packaging information for the givenConsignmentModel.CODE.- Specified by:
updateConsignmentPackagingInformationin interfaceWarehousingConsignmentFacade- Parameters:
code- the consignment code for which the packaging information will be updatedpackagingInfoData- the new packaging information with which to update the consignment- Returns:
- the updated
ConsignmentData
-
reallocateConsignment
public void reallocateConsignment(java.lang.String consignmentCode, ConsignmentReallocationData consignmentReallocationData)Description copied from interface:WarehousingConsignmentFacadeReallocate the given consignment based on the givenConsignmentReallocationData- Specified by:
reallocateConsignmentin interfaceWarehousingConsignmentFacade- Parameters:
consignmentCode- theConsignmentData.codewhich needs to be reallocatedconsignmentReallocationData- theConsignmentReallocationDatacontaining theDeclineEntryData
-
pickConsignment
public java.lang.String pickConsignment(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeAPI to pick aConsignmentModeland return its pick slip- Specified by:
pickConsignmentin interfaceWarehousingConsignmentFacade- Parameters:
code- theConsignmentModel.CODE- Returns:
- the generated HTML template for the pick slip
-
pickConsignment
public java.lang.String pickConsignment(java.lang.String code, boolean printSlip)Description copied from interface:WarehousingConsignmentFacadeAPI to pick aConsignmentModeland optionally return its pick slip- Specified by:
pickConsignmentin interfaceWarehousingConsignmentFacade- Parameters:
code- theConsignmentModel.CODEprintSlip- flag used to check if the pick slip should be returned- Returns:
- the generated HTML template for the pick slip or null
-
consolidatedPickSlip
public java.lang.String consolidatedPickSlip(ConsignmentCodeDataList consignmentCodeDataList)
Description copied from interface:WarehousingConsignmentFacadeAPI to print a consolidated pick list for the specifiedConsignmentCodeDataList. The API also performs the Pick operation on eachConsignmentModelin the list- Specified by:
consolidatedPickSlipin interfaceWarehousingConsignmentFacade- Parameters:
consignmentCodeDataList- theConsignmentCodeDataListcontaining mulitpleConsignmentModel.CODE- Returns:
- the generated HTML template for the consolidated pick slip
-
packConsignment
public java.lang.String packConsignment(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeAPI to pack aConsignmentModeland its pack label- Specified by:
packConsignmentin interfaceWarehousingConsignmentFacade- Parameters:
code- theConsignmentModel.CODE- Returns:
- the generated HTML template for the pack label
-
packConsignment
public java.lang.String packConsignment(java.lang.String code, boolean printSlip)Description copied from interface:WarehousingConsignmentFacadeAPI to pack aConsignmentModeland optionally return its pack label- Specified by:
packConsignmentin interfaceWarehousingConsignmentFacade- Parameters:
code- theConsignmentModel.CODEprintSlip- flag used to check if the pack label should be returned- Returns:
- the optionally generated HTML template for the pack label
-
getExportForm
public java.lang.String getExportForm(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeAPI to get the export form of aConsignmentModel- Specified by:
getExportFormin interfaceWarehousingConsignmentFacade- Parameters:
code- theConsignmentModel.CODE- Returns:
- the generated HTML template for the export form
-
getShippingLabel
public java.lang.String getShippingLabel(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeAPI to get the shipping label of aConsignmentModel- Specified by:
getShippingLabelin interfaceWarehousingConsignmentFacade- Parameters:
code- theConsignmentModel.CODE- Returns:
- the generated HTML template for the shipping label
-
getReturnShippingLabel
public java.lang.String getReturnShippingLabel(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeAPI to get the return shipping label of aConsignmentModel- Specified by:
getReturnShippingLabelin interfaceWarehousingConsignmentFacade- Parameters:
code- theConsignmentModel.CODE- Returns:
- the generated HTML template for the return shipping label
-
getReturnForm
public java.lang.String getReturnForm(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeAPI to get the return form of aConsignmentModel- Specified by:
getReturnFormin interfaceWarehousingConsignmentFacade- Parameters:
code- theConsignmentModel.CODE- Returns:
- the generated HTML template for the return form
-
takePayment
public PaymentTransactionEntryData takePayment(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeAPI to take payment for aConsignmentModel- Specified by:
takePaymentin interfaceWarehousingConsignmentFacade- Parameters:
code- theConsignmentModel.CODE- Returns:
- the
PaymentTransactionEntryDatawith the recorded transaction
-
manuallyReleasePaymentCapture
public void manuallyReleasePaymentCapture(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeAPI to manually release aConsignmentModelafter a payment capture failure- Specified by:
manuallyReleasePaymentCapturein interfaceWarehousingConsignmentFacade- Parameters:
code- theConsignmentModel.CODE
-
manuallyReleaseTaxCommit
public void manuallyReleaseTaxCommit(java.lang.String code)
Description copied from interface:WarehousingConsignmentFacadeAPI to manually release aConsignmentModelafter a tax commit failure- Specified by:
manuallyReleaseTaxCommitin interfaceWarehousingConsignmentFacade- Parameters:
code- theConsignmentModel.CODE
-
performPaymentCapture
protected PaymentTransactionEntryModel performPaymentCapture(ConsignmentModel consignmentModel)
Performs the payment capture operation for the givenConsignmentModel- Parameters:
consignmentModel- theConsignmentModelwhose amount is to be captured- Returns:
- the
PaymentTransactionEntryModelfor the transaction
-
packConsignment
protected java.lang.String packConsignment(ConsignmentModel consignmentModel, boolean printSlip)
Performs common logic for packing aConsignmentModel- Parameters:
consignmentModel- theConsignmentModelto be packedprintSlip- whether or not the generate the pack slip- Returns:
- the generated pack slip
- Throws:
java.lang.IllegalStateException- throw anIllegalStateExceptionif theConsignmentModelhas already been packed and if the slip should not be generated
-
getConsignmentModelForCode
protected ConsignmentModel getConsignmentModelForCode(java.lang.String code)
FindsConsignmentModelfor the givenConsignmentModel.CODE- Parameters:
code- the consignment's code- Returns:
- the requested consignment for the given code
-
getSublistOfSourcingLocations
protected java.util.List<WarehouseModel> getSublistOfSourcingLocations(PageableData pageableData, java.util.List<WarehouseModel> locations)
Gets a sub list based on the pageable data object from the list containing all warehouses.- Parameters:
pageableData- the object which will filter the list with its page related informationlocations- contains all available sourcing locations.- Returns:
- the sub list which met the pageable data criteria
-
populateDeclineEntry
protected DeclineEntry populateDeclineEntry(DeclineEntryData declineEntryData, ConsignmentReallocationData consignmentReallocationData, ConsignmentEntryModel consignmentEntryModel)
Populates and returnsDeclineEntryfrom givenDeclineEntryData- Parameters:
declineEntryData- the givenDeclineEntryDatato prepareDeclineEntryconsignmentReallocationData- theConsignmentReallocationDatato check ifConsignmentReallocationData.globalComment,ConsignmentReallocationData.globalReallocationWarehouseCodeandConsignmentReallocationData.getGlobalReason()are presentconsignmentEntryModel- theConsignmentEntryModel- Returns:
- the
DeclineEntrypopulated from the given params
-
validateDeclineEntryDataToReallocate
protected void validateDeclineEntryDataToReallocate(ConsignmentReallocationData consignmentReallocationData, DeclineEntryData declineEntryData, ConsignmentEntryModel consignmentEntry)
Validation forDeclineEntryDatato be reallocated against givenConsignmentEntryModel.- Parameters:
consignmentReallocationData- theConsignmentReallocationDatato be validateddeclineEntryData- theDeclineEntryDatato be validatedconsignmentEntry- theConsignmentEntryModel, against which given declineEntryData needs to be validated
-
buildDeclineParam
protected void buildDeclineParam(ConsignmentProcessModel processModel, java.util.List<DeclineEntry> entriesToReallocate)
Build and save the context parameter for decline entries and set it into the given process- Parameters:
processModel- the process model for which the context parameters has to be registerentriesToReallocate- the entries to be reallocated
-
cleanDeclineParam
protected void cleanDeclineParam(ConsignmentProcessModel processModel)
Removes the old decline entries fromBusinessProcessModel.CONTEXTPARAMETERS(if any exists), before attempting to decline- Parameters:
processModel- theConsignmentProcessModelfor the consignment to be declined
-
performPickWorkflowAction
protected void performPickWorkflowAction(ConsignmentModel consignmentModel, boolean printSlip)
Performs the PickWorkflowActionModelfor the givenConsignmentModelif the action has not been performed yet. Throws an IllegalStateException if the slip should not be generated and if the consignment was already picked- Parameters:
consignmentModel- theConsignmentModelfor which the action will potentially be performed- Throws:
java.lang.IllegalStateException- throw anIllegalStateExceptionin either of the following 2 cases: 1. If theConsignmentModelhas already been picked and if the slip should not be generated 2. If theWorkflowActionModelis null and if the slip should not be generated
-
performPickWorkflowAction
protected void performPickWorkflowAction(ConsignmentModel consignmentModel)
Performs the PickWorkflowActionModelfor the givenConsignmentModelif the action has not been performed yet.- Parameters:
consignmentModel- theConsignmentModelfor which the action will potentially be performed
-
generateBusinessProcess
protected BusinessProcessModel generateBusinessProcess(java.util.List<ConsignmentModel> consignmentModels)
Generates a dummyBusinessProcessModelwith aListso that it can be passed to thePrintMediaService- Parameters:
consignmentModels- theListwhich will be passed to the new business process- Returns:
- the dummy
BusinessProcessModel
-
generateMediaTemplate
protected java.lang.String generateMediaTemplate(java.lang.String code, java.lang.String template)Generates a media template for the givenConsignmentModel.CODEand velocity template- Parameters:
code- theConsignmentModel.CODEfor which to generate a templatetemplate- the template with which the media will be generated- Returns:
- the newly generated media template
-
getEnumerationService
protected EnumerationService getEnumerationService()
-
setEnumerationService
public void setEnumerationService(EnumerationService enumerationService)
-
getConsignmentGenericDao
protected GenericDao<ConsignmentModel> getConsignmentGenericDao()
-
setConsignmentGenericDao
public void setConsignmentGenericDao(GenericDao<ConsignmentModel> consignmentGenericDao)
-
getConsignmentPagedGenericDao
protected PagedGenericDao<ConsignmentModel> getConsignmentPagedGenericDao()
-
setConsignmentPagedGenericDao
public void setConsignmentPagedGenericDao(PagedGenericDao<ConsignmentModel> consignmentPagedGenericDao)
-
getConsignmentConverter
protected Converter<ConsignmentModel,ConsignmentData> getConsignmentConverter()
-
setConsignmentConverter
public void setConsignmentConverter(Converter<ConsignmentModel,ConsignmentData> consignmentConverter)
-
getWarehouseConverter
protected Converter<WarehouseModel,WarehouseData> getWarehouseConverter()
-
setWarehouseConverter
public void setWarehouseConverter(Converter<WarehouseModel,WarehouseData> warehouseConverter)
-
getPackagingInfoConverter
protected Converter<PackagingInfoModel,PackagingInfoData> getPackagingInfoConverter()
-
setPackagingInfoConverter
public void setPackagingInfoConverter(Converter<PackagingInfoModel,PackagingInfoData> packagingInfoConverter)
-
getReversePackagingInfoConverter
protected Converter<PackagingInfoData,PackagingInfoModel> getReversePackagingInfoConverter()
-
setReversePackagingInfoConverter
public void setReversePackagingInfoConverter(Converter<PackagingInfoData,PackagingInfoModel> reversePackagingInfoConverter)
-
getConsignmentSearchByStatusPagedDao
protected SearchByStatusPagedGenericDao<ConsignmentModel> getConsignmentSearchByStatusPagedDao()
-
setConsignmentSearchByStatusPagedDao
public void setConsignmentSearchByStatusPagedDao(SearchByStatusPagedGenericDao<ConsignmentModel> consignmentSearchByStatusPagedDao)
-
getConsignmentEntryPagedDao
protected PagedGenericDao getConsignmentEntryPagedDao()
-
setConsignmentEntryPagedDao
public void setConsignmentEntryPagedDao(PagedGenericDao consignmentEntryPagedDao)
-
getConsignmentEntryConverter
protected Converter<ConsignmentEntryModel,ConsignmentEntryData> getConsignmentEntryConverter()
-
setConsignmentEntryConverter
public void setConsignmentEntryConverter(Converter<ConsignmentEntryModel,ConsignmentEntryData> consignmentEntryConverter)
-
getWarehousingShippingService
protected WarehousingShippingService getWarehousingShippingService()
-
setWarehousingShippingService
public void setWarehousingShippingService(WarehousingShippingService warehousingShippingService)
-
getSourcingFilterProcessor
protected SourcingFilterProcessor getSourcingFilterProcessor()
-
setSourcingFilterProcessor
public void setSourcingFilterProcessor(SourcingFilterProcessor sourcingFilterProcessor)
-
getWarehouseService
public WarehouseService getWarehouseService()
-
setWarehouseService
public void setWarehouseService(WarehouseService warehouseService)
-
getConsignmentBusinessProcessService
protected WarehousingBusinessProcessService<ConsignmentModel> getConsignmentBusinessProcessService()
-
setConsignmentBusinessProcessService
public void setConsignmentBusinessProcessService(WarehousingBusinessProcessService<ConsignmentModel> consignmentBusinessProcessService)
-
getWarehouseStockService
protected WarehouseStockService getWarehouseStockService()
-
setWarehouseStockService
public void setWarehouseStockService(WarehouseStockService warehouseStockService)
-
getReallocableConsignmentStatusList
protected java.util.List<ConsignmentStatus> getReallocableConsignmentStatusList()
-
setReallocableConsignmentStatusList
public void setReallocableConsignmentStatusList(java.util.List<ConsignmentStatus> reallocableConsignmentStatusList)
-
getPrintMediaService
protected PrintMediaService getPrintMediaService()
-
setPrintMediaService
public void setPrintMediaService(PrintMediaService printMediaService)
-
getWarehousingConsignmentWorkflowService
protected WarehousingConsignmentWorkflowService getWarehousingConsignmentWorkflowService()
-
setWarehousingConsignmentWorkflowService
public void setWarehousingConsignmentWorkflowService(WarehousingConsignmentWorkflowService warehousingConsignmentWorkflowService)
-
getPaymentTransactionEntryConverter
protected Converter<PaymentTransactionEntryModel,PaymentTransactionEntryData> getPaymentTransactionEntryConverter()
-
setPaymentTransactionEntryConverter
public void setPaymentTransactionEntryConverter(Converter<PaymentTransactionEntryModel,PaymentTransactionEntryData> paymentTransactionEntryConverter)
-
getConsignmentAmountCalculationStrategy
protected ConsignmentAmountCalculationStrategy getConsignmentAmountCalculationStrategy()
-
setConsignmentAmountCalculationStrategy
public void setConsignmentAmountCalculationStrategy(ConsignmentAmountCalculationStrategy consignmentAmountCalculationStrategy)
-
getPaymentService
protected PaymentService getPaymentService()
-
setPaymentService
public void setPaymentService(PaymentService paymentService)
-
getConfigurationService
protected ConfigurationService getConfigurationService()
-
setConfigurationService
public void setConfigurationService(ConfigurationService configurationService)
-
-