Subversion Repositories SmartDukaan

Rev

Rev 22859 | Rev 23075 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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