Subversion Repositories SmartDukaan

Rev

Rev 22859 | Rev 23075 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
22925 ashik.ali 1
package com.spice.profitmandi.service.inventory;
22859 ashik.ali 2
 
22925 ashik.ali 3
import java.util.Map;
4
 
22859 ashik.ali 5
import org.springframework.stereotype.Service;
6
 
7
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
8
import com.spice.profitmandi.common.model.CheckItemQuantityRequest;
9
import com.spice.profitmandi.common.model.CheckItemQuantityResponse;
10
import com.spice.profitmandi.common.model.ScanNonSerializedRequest;
11
import com.spice.profitmandi.common.model.ScanSerializedRequest;
12
 
13
@Service
14
public interface PurchaseService {
15
	public void scanSerializedItems(ScanSerializedRequest scanSerializedRequest, int fofoId) throws ProfitMandiBusinessException;
16
	public void scanNonSerializedItems(ScanNonSerializedRequest scanNonSerializedRequest, int fofoId) throws ProfitMandiBusinessException;
17
	public CheckItemQuantityResponse checkItemQuantity(CheckItemQuantityRequest checkItemQuantityRequest, int fofoId);
22925 ashik.ali 18
	public Map<String, Object> purchaseByInvoiceNumber(String airwayBillOrInvoiceNumber, int fofoId) throws ProfitMandiBusinessException;
22859 ashik.ali 19
}