Overview

Summary

ContactDonateImprint


Appendix E-13: LOGISTICS PARTNER (UI prompt)


LogisticsPartnerLogisticsPartnerModuleShopify

Properties (4)

PropertyTypeEntityReferenceModule
(1) CompanyLONGLogisticsPartnerCompanyCompanyModule
(2) DescriptionSTRINGLogisticsPartner
(3) PartnershipEndDateDATELogisticsPartner
(4) PartnershipStartDateDATELogisticsPartner


Module Interfaces (7)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /logisticspartnerinsertLogisticsPartner(logisticspartner)LogisticsPartnerModulePOSTLogisticsPartner
(2) /logisticspartner/company/{id}findAllLogisticsPartnerOfCompany(id)LogisticsPartnerModuleGETCompany LogisticsPartner
(3) /logisticspartnerfindAllLogisticsPartner()LogisticsPartnerModuleGETLogisticsPartner
(4) /logisticspartner/{id}findLogisticsPartnerById(id)LogisticsPartnerModuleGETLogisticsPartner
(5) /logisticsarrangement/logisticspartner/{id}findAllLogisticsArrangementOfLogisticsPartner(id)LogisticsPartnerModuleGETLogisticsPartner LogisticsArrangement
(6) /logisticspartner/{id}updateLogisticsPartnerById(logisticspartner)LogisticsPartnerModulePUTLogisticsPartner
(7) /logisticspartner/{id}deleteLogisticsPartnerById(id)LogisticsPartnerModuleDELETELogisticsPartner





Example:

final LogisticsPartner logisticspartner = (LogisticsPartner) invokeModule(LOGISTICS_PARTNER_MODULE + "/logisticspartner/" + id, LogisticsPartner.class);
if (logisticspartner != null) {
    final Company company1 = (Company) invokeModule(COMPANY_MODULE + "/company/" + logisticspartner.getCompany().getId(), Company.class);
    if (company1 != null) {
    }
}
return logisticspartner;


Overview

Summary

ContactDonateImprint