Subversion Repositories SmartDukaan

Rev

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

Rev 10864 Rev 11219
Line 83... Line 83...
83
   12:i64 quantity,
83
   12:i64 quantity,
84
   13:i64 purchaseId,
84
   13:i64 purchaseId,
85
   14:i64 purchasedAt,
85
   14:i64 purchasedAt,
86
   15:double nlc,
86
   15:double nlc,
87
   16:i64 warehouseId,
87
   16:i64 warehouseId,
88
   17:i64 taxType
88
   17:i64 taxType,
-
 
89
   18:i64 invoiceDate
89
}
90
}
90
 
91
 
91
struct InvoiceScan {
92
struct InvoiceScan {
92
    1:string invoiceNumber,
93
    1:string invoiceNumber,
93
    2:i64 numItems,
94
    2:i64 numItems,
Line 138... Line 139...
138
    8:i64 TwoToThreeCount,
139
    8:i64 TwoToThreeCount,
139
    9:i64 ThreeToFourCount,
140
    9:i64 ThreeToFourCount,
140
   10:i64 FourPlusCount,
141
   10:i64 FourPlusCount,
141
   11:i64 threeMonthPlusCount,
142
   11:i64 threeMonthPlusCount,
142
   12:i64 sixMonthPlusCount,
143
   12:i64 sixMonthPlusCount,
-
 
144
   13:i64 zeroToThreeMonthCount,
-
 
145
   14:i64 threeToSixMonthCount,
-
 
146
   15:i64 sixToTwelveMonthCount,
-
 
147
   16:i64 twelveMonthsPlusCount,
143
   13:i64 ZeroPlusCount,
148
   17:i64 ZeroPlusCount,
144
   14:i64 OnePlusCount,
149
   18:i64 OnePlusCount,
145
   15:i64 ZeroPlusCost,
150
   19:i64 ZeroPlusCost,
146
   16:i64 OnePlusCost,
151
   20:i64 OnePlusCost,
147
   17:string category
152
   21:string category
148
}
153
}
149
 
154
 
150
struct AmazonTransferredSkuDetail{
155
struct AmazonTransferredSkuDetail{
151
	1:i64 itemId,
156
	1:i64 itemId,
152
	2:i64 purchaseId,
157
	2:i64 purchaseId,
Line 406... Line 411...
406
	 i64 getCurrentBadQuantityForItem(1:i64 itemId, 2:i64 currentWarehouseId, 3:i64 physicalWarehouseId) throws (1:WarehouseServiceException wex);
411
	 i64 getCurrentBadQuantityForItem(1:i64 itemId, 2:i64 currentWarehouseId, 3:i64 physicalWarehouseId) throws (1:WarehouseServiceException wex);
407
	 
412
	 
408
	 i64 scanForBadPurchaseReturn(1:list<InventoryItem> saleReturnItems, 2:i64 vendorId, 3:i64 billingWarehouseId) throws (1:WarehouseServiceException ex);
413
	 i64 scanForBadPurchaseReturn(1:list<InventoryItem> saleReturnItems, 2:i64 vendorId, 3:i64 billingWarehouseId) throws (1:WarehouseServiceException ex);
409
	 
414
	 
410
	 map<i64, i64> getItemsInPurchaseReturn(1:i64 purchaseReturnId) throws (1:WarehouseServiceException ex);
415
	 map<i64, i64> getItemsInPurchaseReturn(1:i64 purchaseReturnId) throws (1:WarehouseServiceException ex);
-
 
416
	 
-
 
417
	 list<Scan> getScansForInventoryItem(1:i64 inventoryItemId, 2:ScanType type) throws (1:WarehouseServiceException ex);
-
 
418
	 
411
}
419
}
412
	 
420
	 
413
421