Subversion Repositories SmartDukaan

Rev

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

Rev 5437 Rev 5496
Line 51... Line 51...
51
    6:string itemName,
51
    6:string itemName,
52
    7:double unitPrice,
52
    7:double unitPrice,
53
    8:i64 quantity
53
    8:i64 quantity
54
}
54
}
55
 
55
 
-
 
56
struct InvoiceScan {
-
 
57
    1:string invoiceNumber,
-
 
58
    2:i64 numItems,
-
 
59
    3:string supplierName,
-
 
60
    4:i64 date,
-
 
61
    5:i64 scannedQuantity
-
 
62
}
-
 
63
 
56
exception WarehouseServiceException {
64
exception WarehouseServiceException {
57
    1:GenericService.ExceptionType exceptionType,
65
    1:GenericService.ExceptionType exceptionType,
58
    2:string message
66
    2:string message
59
}
67
}
60
 
68
 
Line 116... Line 124...
116
 
124
 
117
    /**
125
    /**
118
     * Returns the purchase scans grouped by items for Purchase register reconciliation
126
     * Returns the purchase scans grouped by items for Purchase register reconciliation
119
     */
127
     */
120
    list<DetailedPurchaseScan> getPurchaseScans(1:i64 startDate, 2:i64 endDate);
128
    list<DetailedPurchaseScan> getPurchaseScans(1:i64 startDate, 2:i64 endDate);
-
 
129
 
-
 
130
    /**
-
 
131
     * Returns the invoices and the count of scans against on a given day.
-
 
132
     */
-
 
133
     list<InvoiceScan> fetchScansPerInvoiceNumber(1:i64 date);
121
}
134
}