Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

package com.spice.profitmandi.service.warehouse;

import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
import com.spice.profitmandi.dao.model.warehouse.WarehouseInvoicePurchaseModel;
import org.springframework.stereotype.Service;

@Service
public interface GrnRequestService {

    void createGrnRequest(WarehouseInvoicePurchaseModel invoicePurchaseModel) throws ProfitMandiBusinessException;

    void resolvedMismatchRequest(int id, int requiredQty) throws Exception;
}