| Line 5... |
Line 5... |
| 5 |
import com.spice.profitmandi.common.model.*;
|
5 |
import com.spice.profitmandi.common.model.*;
|
| 6 |
import com.spice.profitmandi.dao.entity.fofo.CustomerAddress;
|
6 |
import com.spice.profitmandi.dao.entity.fofo.CustomerAddress;
|
| 7 |
import com.spice.profitmandi.dao.entity.fofo.CustomerCreditNote;
|
7 |
import com.spice.profitmandi.dao.entity.fofo.CustomerCreditNote;
|
| 8 |
import com.spice.profitmandi.dao.entity.fofo.FofoOrder;
|
8 |
import com.spice.profitmandi.dao.entity.fofo.FofoOrder;
|
| 9 |
import com.spice.profitmandi.dao.entity.fofo.FofoOrderItem;
|
9 |
import com.spice.profitmandi.dao.entity.fofo.FofoOrderItem;
|
| - |
|
10 |
import com.spice.profitmandi.dao.enumuration.inventory.ScratchedGift;
|
| 10 |
import org.springframework.http.ResponseEntity;
|
11 |
import org.springframework.http.ResponseEntity;
|
| 11 |
import org.springframework.stereotype.Service;
|
12 |
import org.springframework.stereotype.Service;
|
| 12 |
|
13 |
|
| 13 |
import java.time.LocalDate;
|
14 |
import java.time.LocalDate;
|
| 14 |
import java.time.LocalDateTime;
|
15 |
import java.time.LocalDateTime;
|
| Line 54... |
Line 55... |
| 54 |
|
55 |
|
| 55 |
public float getSales(LocalDateTime onDate);
|
56 |
public float getSales(LocalDateTime onDate);
|
| 56 |
|
57 |
|
| 57 |
public float getSales(LocalDateTime startDate, LocalDateTime endDate);
|
58 |
public float getSales(LocalDateTime startDate, LocalDateTime endDate);
|
| 58 |
|
59 |
|
| - |
|
60 |
ScratchedGift getSelectedGift(double purchaseAmount);
|
| - |
|
61 |
|
| 59 |
String getInvoiceNumber(int fofoId, String fofoStoreCode);
|
62 |
String getInvoiceNumber(int fofoId, String fofoStoreCode);
|
| 60 |
|
63 |
|
| 61 |
|
64 |
|
| 62 |
public ResponseEntity<?> downloadReportInCsv( org.apache.commons.io.output.ByteArrayOutputStream baos , List<List<?>> rows,String fileName);
|
65 |
public ResponseEntity<?> downloadReportInCsv( org.apache.commons.io.output.ByteArrayOutputStream baos , List<List<?>> rows,String fileName);
|
| 63 |
public boolean notifyColorChange(int orderId, int itemId) throws ProfitMandiBusinessException;
|
66 |
public boolean notifyColorChange(int orderId, int itemId) throws ProfitMandiBusinessException;
|
| 64 |
|
67 |
|