Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
35716 amit 1
package com.spice.profitmandi.service.warehouse;
2
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
4
import com.spice.profitmandi.dao.model.warehouse.WarehouseInvoicePurchaseModel;
5
import org.springframework.stereotype.Service;
6
 
7
@Service
8
public interface GrnRequestService {
9
 
10
    void createGrnRequest(WarehouseInvoicePurchaseModel invoicePurchaseModel) throws ProfitMandiBusinessException;
11
 
12
    void resolvedMismatchRequest(int id, int requiredQty) throws Exception;
13
}