Subversion Repositories SmartDukaan

Rev

Rev 23417 | Rev 23498 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
21543 ashik.ali 1
#Generic Errors
2
 
3
GE_1000=User not found
4
GE_1002=Role is already exist
5
GE_1003=Email is not verified
22106 ashik.ali 6
GE_1004=Accessed uri is forbidden
22215 ashik.ali 7
GE_1005=Unable to get ok response from server
8
GE_1006=Unable to connect to server
22924 ashik.ali 9
GE_1007=Internal server error
21543 ashik.ali 10
 
11
OK_1000=Migration has been done
22124 ashik.ali 12
OK_1001=Mongo Migration has been done
21543 ashik.ali 13
 
14
#Validation
15
VE_1000=Empty Json request check syntex
16
VE_1001=Invalid json request check syntex
17
VE_1002=userId is required
18
VE_1003=userId can not be blank
19
VE_1004=emailId is required
20
VE_1005=emailId can not be blank
21
VE_1006=roleId is required
22
VE_1007=roleId can not be blank
23
VE_1008=roleName is required
24
VE_1009=roleName can not be blank
22470 ashik.ali 25
VE_1010=interval is empty
26
VE_1011=interval should be in assending order
21543 ashik.ali 27
VE_1014=privilegeId is required
28
VE_1015=privilegeId can not be blank
22924 ashik.ali 29
VE_1016=emailId is not valid
21543 ashik.ali 30
VE_1069=mobileNumber is required
31
VE_1070=mobileNumber can not be blank
32
VE_1071=mobileNumber is not valid
23369 ashik.ali 33
VE_1072=gstNumber is not valid
21543 ashik.ali 34
 
35
VE_1087=errorCode is required
36
VE_1088=errorCode can not be blank
37
VE_1089=errorCode should contain 7 characters
38
VE_1090=errorCode should be of 2 alphabets characters then underscore then 4 digit numeric code
39
VE_1091=errorMessage is required
40
VE_1092=errorMessage can not be blank
41
 
42
 
43
# User related errors
44
USR_1000=user not found
45
USR_1003=role is already added with given user
46
USR_1004=role is not mapped with given user
47
USR_1005=token is invalid
48
USR_1006=unable to verify token from google servers
49
USR_1007=user is already exist
50
USR_1008=user not found with the given token
51
USR_1009=roleTypes not found with given token
52
USR_1010=unable to parse given token
53
USR_1011=Unable to create JWT Token, or problem in signing the token
54
USR_1012=Token has been expired
22521 ashik.ali 55
USR_1013=Requested user is not retailer
56
USR_1014=Retailer fofo Store has is already created
22924 ashik.ali 57
USR_1015=Saholic user not found
22521 ashik.ali 58
 
21543 ashik.ali 59
# User related validation errors
60
USR_VE_1000=firstName is required
61
USR_VE_1001=firstName can not be blank
62
USR_VE_1002=lastName is required
63
USR_VE_1003=lastName can not be blank
64
USR_VE_1004=emailId is required
65
USR_VE_1005=emailId can not be blank
66
USR_VE_1006=mobileNumber is required
67
USR_VE_1007=mobileNumber can not be blank
68
USR_VE_1008=gender is invalid, Please choose any one [MALE, FEMALE, OTHER]
69
USR_VE_1009=token is required
70
USR_VE_1010=token can not be blank
71
USR_VE_1011=type is required
72
USR_VE_1012=type can not be blank
73
USR_VE_1013=type is invalid, Please choose any one [GOOGLE]
74
USR_VE_1014=city is required
75
USR_VE_1015=city can not be blank
76
USR_VE_1016=pinCode is required
77
USR_VE_1017=pinCode can not be blank
78
USR_VE_1018=mobileNumber is invalid length should be 10 digit
79
 
80
# User related response
81
USR_OK_1000=User has registered
23201 ashik.ali 82
USR_OK_1001=User secondry email has been updated
21543 ashik.ali 83
 
84
# Role related errors
85
ROL_1000=role not found with given id
86
ROL_1001=role not found with given name
87
ROL_1002=role is already exist with given name and type
88
ROL_1003=api is already added with given role
89
ROL_1004=api is not mapped with given role
90
ROL_1005=role not found with given api
91
# Role validation errors
92
ROL_VE_1000=roleName is required
93
ROL_VE_1001=roleName can not be blank
94
ROL_VE_1002=roleType is required
95
ROL_VE_1003=roleType can not be blank
96
ROL_VE_1004=roleType is invalid, Please choose any one [USER, RETAILER, CUSTOM]
97
ROL_VE_1005=pricePermission is required
98
ROL_VE_1006=pricePermission can not be blank
99
ROL_VE_1007=pricePermission is invalid, Please choose any one [WITHOUT_PRICE, WITH_PRICE]
100
 
101
# Role related ok response
102
ROL_OK_1000=Role has been created
103
ROL_OK_1001=Api has been added with given role
104
ROL_OK_1002=Api has been removed from given role
105
 
106
# Privilege related errors
107
PRVLG_1000=privilege not found with given id
108
 
109
# Privilege related OK response
110
PRVLG_OK_1000=privilege has been created
111
PRVLG_OK_1000=privilege has been deleted
112
 
113
# Api related errors
114
API_1000=api not found with given id
115
API_1001=api not found with given name
116
API_1002=api not found with given uri
117
API_1003=api is already exist with given uri and method
118
 
119
# Api validation errors
120
API_VE_1000=apiName is required
121
API_VE_1001=apiName can not be blank
122
API_VE_1002=apiUri is required
123
API_VE_1003=apiUri can not be blank
124
API_VE_1004=apiMethod is required
125
API_VE_1005=apiMethod can not be blank
126
API_VE_1006=apiMethod is invalid, Please choose any one [GET, POST, PUT, DELETE]
127
API_VE_1007=apiId is required
128
API_VE_1008=apiId must be positive integer
129
# Api related OK response
130
API_OK_1000=Api has been created
131
API_OK_1001=Api has been deleted
132
API_OK_1002=Api has been updated
133
 
134
 
135
# Address related errors
136
ADRS_1000=Address not found
137
ADRS_1001=Address is duplicate
138
 
139
# Address related validation errors
140
ADRS_VE_1000=name is required
141
ADRS_VE_1001=name can not be blank
142
ADRS_VE_1002=line1 is required
143
ADRS_VE_1003=line1 can not be blank
144
ADRS_VE_1004=line2 is required
145
ADRS_VE_1005=line2 can not be blank
146
ADRS_VE_1006=landmark is required
147
ADRS_VE_1007=landmark can not be blank
148
ADRS_VE_1008=city is required
149
ADRS_VE_1009=city can not be blank
150
ADRS_VE_1010=state is required
151
ADRS_VE_1011=state can not be blank
152
ADRS_VE_1012=pinCode is required
153
ADRS_VE_1013=pinCode can not be blank
154
ADRS_VE_1014=country is required
155
ADRS_VE_1015=country can not be blank
156
ADRS_VE_1016=phoneNumber is required
157
ADRS_VE_1017=phoneNumber can not be blank
158
 
159
#Document related errors
160
DCMNT_1000=Document not found
161
 
162
# Shop related errors
163
SHP_1000=Shop not found
164
SHP_1001=This is existing document of another shop
165
SHP_1002=Shop Address is duplicate
166
SHP_1003=Shop is duplicate
167
SHP_1004=Shop not found with the given retailer
168
 
23430 ashik.ali 169
# Recharge Provider related errors
170
RCHRG_PRVDR_1000=Recharge Provider not found
171
 
172
# Recharge Transaction related errors
173
RCHRG_TXN_1000=Recharge Transaction not found
174
 
23417 ashik.ali 175
# Item related errors
176
ITM_1000=Item not found
177
 
178
# Retailer brand errors
179
RTLR_BRND_1000=Retailer Brand not found
180
 
181
# Fofo partner payment option related errors
182
FF_PRTNR_PMNT_OPT_1000=Fofo Partner payment option related errors
183
 
21543 ashik.ali 184
# Shop related validation errors
185
SHP_VE_1000=name is required
186
SHP_VE_1001=name can not be blank
187
SHP_VE_1002=retailerId is required
188
SHP_VE_1003=retailerId can not be blank
189
SHP_VE_1004=documentId is required
190
SHP_VE_1005=documentId can not be blank
191
SHP_VE_1006=address is requred
192
 
193
#Retailer related errors
194
RTLR_1000=Retailer not found
195
RTLR_1001=Retailer is already exist with given number and type
196
RTLR_1002=Retailer address is duplicate
197
RTLR_1003=Retailer is already mapped with the given brand
198
RTLR_1004=Retailer registered address is already exist
199
RTLR_1005=Retailer not found with the given brand
200
RTLR_1006=Retailer not found with the given address
201
RTLR_1007=Retailer does not exist with given document
21558 ashik.ali 202
RTLR_1008=Fofo Retailer does not exist with given email id
21571 ashik.ali 203
RTLR_1009=Fofo Retailer session is not valid
21786 ashik.ali 204
RTLR_1010=Retailer is not fofo
23040 ashik.ali 205
RTLR_1011=Retailer is already registered with given email
21571 ashik.ali 206
 
21543 ashik.ali 207
#Retailer related validation errors
208
RTLR_VE_1000=name is required
209
RTLR_VE_1001=name can not be blank
210
RTLR_VE_1002=number is required
211
RTLR_VE_1003=number can not be blank
212
RTLR_VE_1004=type is required
213
RTLR_VE_1005=type can not be blank, possible values are [TIN, ESTABLISHMENT]
214
RTLR_VE_1006=monthlySaleValue is required
215
RTLR_VE_1007=monthlySaleValue can not be blank
216
RTLR_VE_1008=smartphoneSaleValue is required
217
RTLR_VE_1009=smartphoneSaleValue can not be blank
218
RTLR_VE_1010=brandNames are required
219
RTLR_VE_1011=brandNames must be array
220
RTLR_VE_1012=recharge is required
221
RTLR_VE_1013=mobile is required
222
RTLR_VE_1014=accessories is required
223
RTLR_VE_1015=other1 is required
224
RTLR_VE_1016=other2 is required
225
RTLR_VE_1017=address is required
226
RTLR_VE_1018=documentId is required
227
RTLR_VE_1019=documentId can not be blank
228
RTLR_VE_1020=shop is required
21571 ashik.ali 229
RTLR_VE_1021=Given types are not valid
21543 ashik.ali 230
 
231
#Retailer OK response
232
RTLR_OK_1000=Retailer has been created
21571 ashik.ali 233
RTLR_OK_1001=Retailer is already login
234
RTLR_OK_1002=Retailer has been login successfully.
22521 ashik.ali 235
RTLR_OK_1003=Retailer fofo Store has been created
21543 ashik.ali 236
 
22521 ashik.ali 237
 
21543 ashik.ali 238
#Order Related Codes
239
CART_CHANGED=cart has changed
21572 ashik.ali 240
SELF_PICKUP_NOT_ALLOWED=self pickup not allowed
21666 amit.gupta 241
INVALID_TR_ID=invalid transaction id
21572 ashik.ali 242
 
243
#Scan Record and InventoryItem related codes
244
SCNSR_II_1000=Scan serialized record has been created
245
 
21575 ashik.ali 246
SCNNSR_II_1000=Scan non serialized record has been created
247
 
21601 ashik.ali 248
# FofoLineItemImei related errors
249
FFLINITMIMEI_1000=FofoLineItemImei not found
250
 
22924 ashik.ali 251
#Fofo Order Item related errors
252
FFORDRITM_1000=Fofo Order Item not found
21601 ashik.ali 253
 
22924 ashik.ali 254
#Fofo Order related errors
255
FFORDR_1000=Fofo Order not found
256
FFORDR_1001=Given Item Ids quantity does not match the size of given serial numbers
257
FFORDR_1002=Given item ids selling price must be greater than zero
258
FFORDR_1003=Given item ids are not completly found in database
259
FFORDR_1004=Given item ids's serialNumbers are not completly found in database
260
FFORDR_1005=Given item ids quantity are not sufficient for non serialized items
261
FFORDR_1006=Unable to prepare cart for placing order.
262
FFORDR_1007=insurance margin should be greater than equal to item profit margin
263
FFORDR_1008=insurance sale amount can not be lesser than insurance purchase amount
264
FFORDR_1009=insurance sale amount can not be greater than than insurance max amount
265
FFORDR_1010=Given item Ids selling prices should be greater than mop prices
266
FFORDR_1011=Given item Ids discount amounts should be lesser than discount max prices
267
FFORDR_1012=Given date of birth is invalid
268
FFORDR_1013=Given item Id's serialNumbers are invalid for serialized case
269
FFORDR_1014=Given item Id's serialNumbers are invalid for non serialized case
270
FFORDR_1015=Given item ids quantity are greater than the available quantities.
271
FFORDR_1016=Payment options amount is not equal to total amount
23364 ashik.ali 272
FFORDR_1017=Given payment options ids are invalid
273
FFORDR_1018=Given payment options amount should be greater than zero
23417 ashik.ali 274
FFORDR_1019=Maximum limit reached for the day
275
FFORDR_1020=Invalid OTP
276
FFORDR_1021=OTP expired
277
FFORDR_1022=Maximum try count reached
22924 ashik.ali 278
 
23417 ashik.ali 279
# Fofo Order ok responses
280
FFORDR_OK_1000=OTP generated less than 2 minutes ago
281
FFORDR_OK_1001=OTP generated successfully
282
FFORDR_OK_1002=OTP validated successfully
283
 
284
 
21601 ashik.ali 285
# ImeiLot related errors
286
IMEILT_1000=ImeiLot not found
287
 
288
# Imei related erros
289
IMEI_1000=Imei not found
290
 
291
# InventoryItem related errors
292
INVNTRITM_1000=InventoryItem not found
293
 
294
# InvoiceNumberGenerationSequence related erros
22924 ashik.ali 295
INVCNMBRGNRTNSQNC_1000=Invoice Number Generation Sequence not found
21601 ashik.ali 296
 
297
# Order related errors
298
ORDR_1000=Order not found
299
 
300
# PaymentOption related errors
21752 ashik.ali 301
PMNTOPT_1000=PaymentOption not found
302
 
23417 ashik.ali 303
# Prebooking Customer amount related errors
304
PRBKNG_CSTMR_AMNT_1000=Prebooking customer amount not found
305
 
306
# Prebooking related errors
307
PRBKNG_1000=Given item id not found in active prebooking listing
308
PRBKNG_1001=Given item id is alrady booked with given customer mobile number
309
 
22924 ashik.ali 310
# Purchase related errors
311
PRCHS_1000=Purchase not found
312
PRCHS_1001=Found serial numbers are less in size than given serial numbers
313
PRCHS_1002=Given serial numbers are invalid
23414 amit.gupta 314
PRCHS_1003=Mentioned Quantity is not same as total invoiced quantity
22924 ashik.ali 315
 
21752 ashik.ali 316
# Tag related errors
317
TG_1000=Tag not found
22924 ashik.ali 318
TG_1001=Tag ids not found
319
TG_1002=Tag item ids not found
21752 ashik.ali 320
 
321
# Tag Ok responses
21756 ashik.ali 322
TG_OK_1000=Tag has been created
323
TG_OK_1001=Tag has been activated
324
TG_OK_1001=Tag has been deactivated
325
 
326
# PinCodeTag related Errors
327
PNCDTG_1000=PinCodeTag not found
328
 
329
# PinCodeTag validation errors
330
PNCD_VE_1000=PinCode is invalid
331
 
332
# PinCodeTag Ok responses
333
PNCDTG_OK_1000=PinCodeTag has been created
334
PNCDTG_OK_1001=PinCodeTag has been activated
21786 ashik.ali 335
PNCDTG_OK_1002=PinCodeTag has been deactivated
336
 
337
# Tag Listing related errors
338
TGLSTNG_1000=Tag Listing not found
22924 ashik.ali 339
TGLSTNG_1001=Tag Listing list is empty
21786 ashik.ali 340
 
341
# Tag Listing Ok responses
342
TGLSTNG_OK_1000=Tag Listing has been created
343
TGLSTNG_OK_1001=Tag Listing has been activated
344
TGLSTNG_OK_1002=Tag Listing has been deactivated
345
TGLSTNG_OK_1003=Tag Listing has updated
346
 
347
# Tag Listing bulk upload validation errors
348
TGLSTNG_VE_1000=Tag Id header is invalid
349
TGLSTNG_VE_1001=Tag Label header is invalid
350
TGLSTNG_VE_1002=Item Id header is invalid
351
TGLSTNG_VE_1003=Brand header is invalid
352
TGLSTNG_VE_1004=Model Name is header is invalid
353
TGLSTNG_VE_1005=Model Number is header is invalid
354
TGLSTNG_VE_1006=Color header is invalid
355
TGLSTNG_VE_1007=Selling Price header is invalid
356
TGLSTNG_VE_1008=Support Price header is invalid
357
TGLSTNG_VE_1009=Start Date header is invalid
358
TGLSTNG_VE_1010=Given Cell is invalid
22207 amit.gupta 359
TGLSTNG_VE_1011=Invalid columns expected 11 columns
21786 ashik.ali 360
TGLSTNG_VE_1012=Header is missing in first row
361
 
362
# Excel file validation errors
22470 ashik.ali 363
EXL_VE_1000=Excel File unable to parse
364
 
22607 ashik.ali 365
ITM_AGNG_OK_1000=Item Aging report successfully generated
366
 
367
# Retailer Scheme tag errors
368
RTLR_SCHM_TG_1000=Retailer Scheme tag not found
369
 
22652 ashik.ali 370
# Inventory Item tag errors
371
INVNTRY_ITM_1000=InventoryItem not found
372
 
373
 
22607 ashik.ali 374
# Scheme tag errors
22858 ashik.ali 375
SCHM_1000=Scheme not found
22924 ashik.ali 376
SCHM_1001=Scheme retailer Ids can not be null or empty
377
SCHM_1002=Scheme retailer Ids are invalid
378
SCHM_1003=Scheme item Ids can not be null or empty
379
SCHM_1004=Scheme item Ids are invalid
380
SCHM_1005=Scheme is already activated
381
SCHM_1006=Expired scheme can not be activated
382
SCHM_1007=Scheme must be activated for expiring
383
SCHM_1008=Scheme is already expired
22858 ashik.ali 384
 
22924 ashik.ali 385
 
386
 
387
SCHM_VE_1000=Scheme name can not be empty
388
SCHM_VE_1001=Scheme amount must be greater than zero
389
SCHM_VE_1002=Scheme amount can not greater than 100 if scheme type is percentage
390
SCHM_VE_1003=Scheme start date can not be null or empty
391
SCHM_VE_1004=Scheme end date can not be null or empty
392
SCHM_VE_1005=Scheme start date can not greater than end date
393
 
23417 ashik.ali 394
# Prebooking related errors
395
PRBKNG_LSTNG_1000=Prebooking listing not found
396
PRBKNG_LSTNG_1001=Prebooking listing is already active
397
PRBKNG_LSTNG_1002=Expire Prebooking listing can not be active
398
PRBKNG_LSTNG_1003=Prebooking listing must be active for expiring
399
PRBKNG_LSTNG_1004=Expire Prebooking listing is already expire
400
 
22858 ashik.ali 401
# Wallet related errors
22924 ashik.ali 402
WLT_1000=Wallet has insufficient balance
403
 
404
# District Master related errors
405
DSTRCT_1000=District not found
406
 
407
# Fofo Store related errors
408
FOFOSTR_1000=Fofo store not found
409
 
410
# Fofo Store Sequence Generation related errors
411
FOFOSTRSQNCGNRTN_1000=Fofo store sequence generation not found 
412
 
413
# Gadget Cops Insurance calculation related errors
414
GDTCPSINSRNCCALC_1000=Gadget Cops insurance calucation not found
22995 amit.gupta 415
GDTCPSServerDown_1000=Could not create policy on Gadget Cop
22924 ashik.ali 416
 
417
# Not Buy Back related errors
418
NTBYBAK_1000=Not Buy back not found
419
 
420
# Otp related errors
421
OTP_1000=Otp not found
422
 
423
# Policy Number generation sequence related errors
424
PLCNMBRGNRTNSQNC_1000=Policy number generation sequence not found
425
 
426
# Inventory snapshot related errors
427
INVNTRYSNPSHT_1000=Inventory Snapshot not found\
428
 
429
# Customer address related errors
430
CSTMRADRS_1000=Customer address not found
431
 
432
# Customer related errors
433
CSTMR_1000=Customer not found
434
CSTMR_1001=Customer is already exist
435
CSTMR_1002=Customer 
436
 
437
 
438
# Transaction related errors
439
TRNSCTION_1000=Transaction not found
440
 
441
# Cart related errors
442
CART_1000=Cart not found
443
 
444
# Counter related errors
445
CNTR_1000=Counter not found
446
 
447
# Private Deal User Address related errors
448
PRVTDLUSRADRS_1000=Private deal user address not found
449
 
450
# Private Deal related errors
451
PRVTDL_1000=Private deal not found
452
 
23018 ashik.ali 453
# Operator related errors
454
OPRTR_1000=Operator not found
22924 ashik.ali 455
 
23018 ashik.ali 456
# Oxigen Operator related errors
457
OXGNOPRTR_1000=Oxigen Operator not found
22924 ashik.ali 458
 
23018 ashik.ali 459
# Oxigen Transaction related errors
460
OXGNTXN_1000=Oxigen Transacton not found
461
 
462
# Oxigen Transaction Request Id Sequence related errors
463
OXGNTXNRQSTIDSQNC_1000=Oxigen Transaction Request Id Sequence is not found
464
 
465
# Recharge Provider related errors
466
RCHRGPRVDR_1000=Recharge Provider not found
467
 
468
# Recharge validation related errors
469
RCHRG_VE_1000=Provider name can not be blank
470
RCHRG_VE_1001=Recharge Type must be 'MOBILE' or 'DTH'
471
RCHRG_VE_1002=Recharge amount must be greater than zero
472
RCHRG_VE_1003=Recharge operator name can not be blank
473
RCHRG_VE_1004=Recharge reference number can not blank 
23109 ashik.ali 474
 
475
# price drop related errors
476
PRCDRP_1000=Price Drop not found
477
 
478
# pending recharge commission related errors
479
PNDNGRCHRGCMSN_1000=Pending recharge commission not found