Subversion Repositories SmartDukaan

Rev

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

Rev 21844 Rev 21847
Line 229... Line 229...
229
     * Creates purchase order objects from pending orders
229
     * Creates purchase order objects from pending orders
230
     */
230
     */
231
    list<PurchaseOrder> getPendingPurchaseOrders(1:i64 warehouseId) throws (1:PurchaseServiceException e);
231
    list<PurchaseOrder> getPendingPurchaseOrders(1:i64 warehouseId) throws (1:PurchaseServiceException e);
232
 
232
 
233
    /**
233
    /**
234
     * Returns all the valid suppliers
234
     * Returns all the valid suppliers with GST Codes
235
     */
235
     */
236
    list<Supplier> getSuppliers() throws (1:PurchaseServiceException e);
236
    list<Supplier> getSuppliers() throws (1:PurchaseServiceException e);
237
 
237
 
238
    /**
238
    /**
-
 
239
     * Returns all the valid suppliers
-
 
240
     */
-
 
241
    list<Supplier> getAllSuppliers() throws (1:PurchaseServiceException e);
-
 
242
 
-
 
243
    /**
239
     * Fulfills a given purchase order with an item.
244
     * Fulfills a given purchase order with an item.
240
     */
245
     */
241
    void fulfillPO(1:i64 purchaseOrderId, 2:i64 itemId, 3:i64 quantity) throws (1:PurchaseServiceException e);
246
    void fulfillPO(1:i64 purchaseOrderId, 2:i64 itemId, 3:i64 quantity) throws (1:PurchaseServiceException e);
242
 
247
 
243
    /**
248
    /**