Subversion Repositories SmartDukaan

Rev

Rev 36103 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 36103 Rev 36624
Line 8... Line 8...
8
import com.spice.profitmandi.dao.entity.catalog.Category;
8
import com.spice.profitmandi.dao.entity.catalog.Category;
9
import com.spice.profitmandi.dao.entity.fofo.CustomerReturnItem;
9
import com.spice.profitmandi.dao.entity.fofo.CustomerReturnItem;
10
import com.spice.profitmandi.dao.entity.fofo.DebitNote;
10
import com.spice.profitmandi.dao.entity.fofo.DebitNote;
11
import com.spice.profitmandi.dao.entity.fofo.InventoryItem;
11
import com.spice.profitmandi.dao.entity.fofo.InventoryItem;
12
import com.spice.profitmandi.dao.entity.fofo.PurchaseReturnItem;
12
import com.spice.profitmandi.dao.entity.fofo.PurchaseReturnItem;
13
import in.shop2020.model.v1.user.ItemQuantity;
-
 
14
import org.springframework.cache.annotation.Cacheable;
13
import org.springframework.cache.annotation.Cacheable;
15
import org.springframework.stereotype.Service;
14
import org.springframework.stereotype.Service;
16
 
15
 
17
import java.time.LocalDate;
16
import java.time.LocalDate;
18
import java.time.LocalDateTime;
17
import java.time.LocalDateTime;
Line 87... Line 86...
87
	// DebitNote debitNote);
86
	// DebitNote debitNote);
88
	public void returnItems(DebitNote debitNote) throws Exception;
87
	public void returnItems(DebitNote debitNote) throws Exception;
89
 
88
 
90
	public void restoreReturnedItems(DebitNote debitNote) throws Exception;
89
	public void restoreReturnedItems(DebitNote debitNote) throws Exception;
91
 
90
 
92
	public List<ItemQuantity> getPartnerStockOnDate(LocalDate stockDate);
-
 
93
 
-
 
94
	float getTotalAmountInStock(int fofoId);
91
	float getTotalAmountInStock(int fofoId);
95
 
92
 
96
	List<InventoryItem> getInventoryInStock();
93
	List<InventoryItem> getInventoryInStock();
97
 
94
 
98
	List<InventoryItem> getInventoryInStock(int fofoId, int itemId);
95
	List<InventoryItem> getInventoryInStock(int fofoId, int itemId);