Subversion Repositories SmartDukaan

Rev

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

Rev 10489 Rev 10689
Line 140... Line 140...
140
   15:i64 ZeroPlusCost,
140
   15:i64 ZeroPlusCost,
141
   16:i64 OnePlusCost,
141
   16:i64 OnePlusCost,
142
   17:string category
142
   17:string category
143
}
143
}
144
 
144
 
-
 
145
struct AmazonTransferredSkuDetail{
-
 
146
	1:i64 itemId,
-
 
147
	2:i64 purchaseId,
-
 
148
	3:i64 purchaseDate,
-
 
149
	4:i64 quantity,
-
 
150
	5:double unitPrice
-
 
151
	6:string brand,
-
 
152
    7:string modelName,
-
 
153
    8:string modelNumber,
-
 
154
    9:string category,
-
 
155
    10:string color
-
 
156
    
-
 
157
}
-
 
158
 
145
struct PossibleWarehouseMovement {
159
struct PossibleWarehouseMovement {
146
	1:i64 fromWarehouseId,
160
	1:i64 fromWarehouseId,
147
	2:i64 toWarehouseId
161
	2:i64 toWarehouseId
148
}
162
}
149
 
163
 
Line 376... Line 390...
376
	 
390
	 
377
	 void markItemsAsReceivedForTransferLotPartial(1:list<InventoryItem> inventoryItems, 2:i64 transferLotId) throws (1:WarehouseServiceException wex);
391
	 void markItemsAsReceivedForTransferLotPartial(1:list<InventoryItem> inventoryItems, 2:i64 transferLotId) throws (1:WarehouseServiceException wex);
378
	 
392
	 
379
	 void markTransferLotAsReceivedPartial(1:i64 id, 2:string remoteTransferRefNumber) throws (1:WarehouseServiceException wex);
393
	 void markTransferLotAsReceivedPartial(1:i64 id, 2:string remoteTransferRefNumber) throws (1:WarehouseServiceException wex);
380
	 
394
	 
-
 
395
	 list<InventoryItem> getInventoryItemScannedInForPO(1:i64 itemId, 2:list<i64> purchaseIds) throws (1:WarehouseServiceException wex);
-
 
396
	 
-
 
397
	 list<AmazonTransferredSkuDetail> getAmazonTransferredSkuDetails(1:list<i64> itemIds) throws (1:WarehouseServiceException wex);
-
 
398
	 
-
 
399
	 list<Scan> getScansforPurchase(1:i64 purchaseId, 2:ScanType scanType) throws (1:WarehouseServiceException wex);
-
 
400
	 //bool inventoryAdjustment()
381
}
401
}
382
	 
402
	 
383
403