| org.kuali.module.financial.service.ProcurementCardCreateDocumentService
All known Subclasses: org.kuali.module.financial.service.impl.ProcurementCardCreateDocumentServiceImpl,
ProcurementCardCreateDocumentService | public interface ProcurementCardCreateDocumentService (Code) | | Service interface for implementing methods to create procurement card documents.
|
Method Summary | |
public boolean | autoApproveProcurementCardDocuments() Finds documents that have been in route status past the number of allowed days. | public boolean | createProcurementCardDocuments() Creates procurement card documents and routes from the records loaded into the transaction table. | public boolean | routeProcurementCardDocuments() Looks for ProcurementCardDocuments with a status of 'I', meaning they have been created and saved to "inbox",
but have not yet been routed. |
autoApproveProcurementCardDocuments | public boolean autoApproveProcurementCardDocuments()(Code) | | Finds documents that have been in route status past the number of allowed days. Then calls document service
to auto approve the documents.
True if the auto approve was successful, false otherwise. |
createProcurementCardDocuments | public boolean createProcurementCardDocuments()(Code) | | Creates procurement card documents and routes from the records loaded into the transaction table.
True if the routing was successful, false otherwise. |
routeProcurementCardDocuments | public boolean routeProcurementCardDocuments()(Code) | | Looks for ProcurementCardDocuments with a status of 'I', meaning they have been created and saved to "inbox",
but have not yet been routed.
True if the routing was successful, false otherwise. |
|
|