Subversion Repositories SmartDukaan

Rev

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

Rev 4009 Rev 4386
Line 29... Line 29...
29
	1:i64 id,
29
	1:i64 id,
30
	2:string name,
30
	2:string name,
31
	3:map<DeliveryType, ProviderDetails> details
31
	3:map<DeliveryType, ProviderDetails> details
32
}
32
}
33
 
33
 
-
 
34
struct Awb{
-
 
35
	1:i64 id,
-
 
36
	2:string awbNumber,
-
 
37
	3:i64 providerId,
-
 
38
	4:string deliveryType
-
 
39
}
-
 
40
 
34
struct AwbUpdate{
41
struct AwbUpdate{
35
    1:string awbNumber,
42
    1:string awbNumber,
36
    2:string providerName,
43
    2:string providerName,
37
    3:string location,
44
    3:string location,
38
    4:i64 entryDate,
45
    4:i64 entryDate,
Line 105... Line 112...
105
	list<i64> getHolidays(1:i64 fromDate, 2:i64 toDate),
112
	list<i64> getHolidays(1:i64 fromDate, 2:i64 toDate),
106
	
113
	
107
	/**
114
	/**
108
	Returns true if COD is allowed for this destination pincode
115
	Returns true if COD is allowed for this destination pincode
109
	*/
116
	*/
110
	bool isCodAllowed(1:string destination_pincode)
117
	bool isCodAllowed(1:string destination_pincode),
-
 
118
	
-
 
119
	/**
-
 
120
	Returns AWB object identified by its AWB number
-
 
121
	*/
-
 
122
	Awb getAwbForNumber(1:string awbNumber)
111
}
123
}