Rev 29250 | Rev 29578 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.service;import java.time.LocalDate;import java.util.List;import java.util.Map;import org.springframework.stereotype.Service;import com.spice.profitmandi.dao.entity.logistics.Provider;import com.spice.profitmandi.dao.entity.logistics.ProviderTat;import com.spice.profitmandi.dao.entity.transaction.Order;import com.spice.profitmandi.dao.model.DispatchNotificationModel;@Servicepublic interface LogisticsService {public LocalDate calculateDeliveryTimeline(LocalDate date, ProviderTat providerTat, int delayDays);public Map<String, DispatchNotificationModel> markedOrderShippedDetail(List<Order> order, Provider provider,Map<String, DispatchNotificationModel> dispatchNotication, String airwaybillNo);}