-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path02.00.11.SqlDataProvider
474 lines (342 loc) · 13.6 KB
/
02.00.11.SqlDataProvider
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
/************************************************************/
/***** SqlDataProvider *****/
/***** *****/
/***** *****/
/***** Note: To manually execute this script you must *****/
/***** perform a search and replace operation *****/
/***** for {databaseOwner} and {objectQualifier} *****/
/***** *****/
/***** *****/
/***** *****/
/************************************************************/
/************************************************************/
/***** SPROC Start *****/
/************************************************************/
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
if exists (select * from dbo.sysobjects where id = object_id(N'{databaseOwner}[{objectQualifier}NEvoweb_NB_Store_Model_GetInStockList]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure {databaseOwner}[{objectQualifier}NEvoweb_NB_Store_Model_GetInStockList]
GO
/*
Author: DCL
Last Modified for NB_Store version: 02.00.10
*/
CREATE PROCEDURE {databaseOwner}[{objectQualifier}NEvoweb_NB_Store_Model_GetInStockList]
@ProductID int,
@Lang nchar(5)
AS
begin
select
M.ModelID,
M.ProductID,
M.ListOrder,
M.UnitCost,
M.Barcode,
M.ModelRef,
M.Deleted,
ML.Lang,
ML.ModelName,
QtyRemaining,
QtyTrans,
QtyTransDate,
PL.ProductName,
P.PortalID,
isnull(SR.ProductWeight,0) as Weight,
isnull(SR.ProductHeight,0) as Height,
isnull(SR.ProductLength,0) as Length,
isnull(SR.ProductWidth,0) as Width,
M.QtyStockSet,
M.DealerCost,
M.PurchaseCost,
ML.[XMLData],
ML.Extra
from {databaseOwner}[{objectQualifier}NB_Store_Model] as M
inner join {databaseOwner}[{objectQualifier}NB_Store_Products] as P on P.ProductID = M.ProductID
left outer join {databaseOwner}[{objectQualifier}NB_Store_ModelLang] as ML on ML.ModelID = M.ModelID and ML.Lang = @Lang
left outer join {databaseOwner}[{objectQualifier}NB_Store_ProductLang] as PL on PL.ProductID = M.ProductID and PL.Lang = @Lang
left outer join {databaseOwner}[{objectQualifier}NB_Store_ShippingRates] as SR on SR.ObjectID = M.ModelID and ShipType='PRD' and SR.[Disable]=0
where M.ProductID = @ProductID
and (QtyRemaining > 0 or QtyRemaining < 0)
order by M.ListOrder
end
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
if exists (select * from dbo.sysobjects where id = object_id(N'{databaseOwner}[{objectQualifier}NEvoweb_NB_Store_Model_GetStockList]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure {databaseOwner}[{objectQualifier}NEvoweb_NB_Store_Model_GetStockList]
GO
/*
Author: DCL
Last Modified for NB_Store version: 02.00.11
*/
CREATE PROCEDURE {databaseOwner}[{objectQualifier}NEvoweb_NB_Store_Model_GetStockList]
@PortalID int,
@Filter nvarchar(50),
@Lang nchar(5),
@CategoryID int,
@PageIndex int,
@PageSize int
AS
begin
declare @SQL nvarchar(4000)
set @SQL = ' SELECT '
set @SQL = @SQL + ' top ' + convert(nvarchar(5),@PageSize)
set @SQL = @SQL + ' row,ModelID,ProductID,TaxCategoryID,ListOrder,UnitCost,Barcode,ModelRef,Deleted,Lang,ModelName,QtyRemaining,QtyTrans,QtyTransDate,ProductName,PortalID,QtyStockSet,DealerCost,PurchaseCost,Extra'
set @SQL = @SQL + ' FROM '
set @SQL = @SQL + ' (select '
set @SQL = @SQL + ' ROW_NUMBER() OVER (order by PL.ProductName,M.ListOrder) AS row, '
set @SQL = @SQL + ' M.ModelID,'
set @SQL = @SQL + ' M.ProductID,'
set @SQL = @SQL + ' P.TaxCategoryID,'
set @SQL = @SQL + ' M.ListOrder,'
set @SQL = @SQL + ' M.UnitCost,'
set @SQL = @SQL + ' M.Barcode,'
set @SQL = @SQL + ' M.ModelRef,'
set @SQL = @SQL + ' M.Deleted,'
set @SQL = @SQL + ' ML.Lang,'
set @SQL = @SQL + ' ML.ModelName,'
set @SQL = @SQL + ' QtyRemaining,'
set @SQL = @SQL + ' QtyTrans,'
set @SQL = @SQL + ' QtyTransDate,'
set @SQL = @SQL + ' PL.ProductName,'
set @SQL = @SQL + ' P.PortalID,'
set @SQL = @SQL + ' M.QtyStockSet,'
set @SQL = @SQL + ' M.DealerCost,'
set @SQL = @SQL + ' M.PurchaseCost,'
set @SQL = @SQL + ' ML.Extra'
set @SQL = @SQL + ' from {databaseOwner}[{objectQualifier}NB_Store_Model] as M'
set @SQL = @SQL + ' left outer join {databaseOwner}[{objectQualifier}NB_Store_ModelLang] as ML on ML.ModelID = M.ModelID and ML.Lang = ''' + @Lang + ''''
set @SQL = @SQL + ' inner join {databaseOwner}{objectQualifier}NB_Store_Products as P on P.ProductID = M.ProductID'
set @SQL = @SQL + ' left outer join {databaseOwner}[{objectQualifier}NB_Store_ProductLang] as PL on PL.ProductID = M.ProductID and PL.Lang = ''' + @Lang + ''''
if @CategoryID > -1
begin
set @SQL = @SQL + ' left join {databaseOwner}{objectQualifier}NB_Store_ProductCategory as PC on PC.ProductID = P.ProductID'
end
set @SQL = @SQL + ' where '
set @SQL = @SQL + ' (ML.Modelname like ''%' + @Filter + '%'''
set @SQL = @SQL + ' or M.Modelref like ''%' + @Filter + '%'''
set @SQL = @SQL + ' or PL.ProductName like ''%' + @Filter + '%'''
set @SQL = @SQL + ' or M.Barcode like ''%' + @Filter + '%'')'
set @SQL = @SQL + ' and P.PortalID = ' + convert(nvarchar(5),@PortalID)
set @SQL = @SQL + ' and isnull(M.Deleted,0) = 0'
set @SQL = @SQL + ' and isnull(P.Archived,0) = 0'
if @CategoryID > -1
begin
set @SQL = @SQL + ' and PC.CategoryID = ' + convert(nvarchar(6),@CategoryID)
end
set @SQL = @SQL + ') AS NB_Store_ModelsPage '
if @PageSize > 0
begin
set @SQL = @SQL + ' WHERE Row between ((' + convert(nvarchar(5),(@PageIndex - 1)) + ' * ' + convert(nvarchar(5),@PageSize) + ') + 1) and ' + convert(nvarchar(5),(@PageIndex*@PageSize))
end
print @sql
exec sp_executesql @SQL
end
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
if exists (select * from dbo.sysobjects where id = object_id(N'{databaseOwner}[{objectQualifier}NEvoweb_NB_Store_Products_GetList]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure {databaseOwner}[{objectQualifier}NEvoweb_NB_Store_Products_GetList]
GO
/*
Author: DCL
Last Modified for NB_Store version: 02.00.11
*/
CREATE PROCEDURE {databaseOwner}[{objectQualifier}NEvoweb_NB_Store_Products_GetList]
@PortalID int,
@CategoryID int,
@Lang char(5),
@Filter nvarchar(50),
@GetArchived bit,
@FeaturedOnly bit,
@OrderBy nvarchar(50),
@OrderDESC bit,
@ReturnLimit nvarchar(5),
@PageIndex int,
@PageSize int,
@SearchDescription bit
AS
begin
declare @SQL nvarchar(4000)
set @SQL = ' SELECT '
if @ReturnLimit > 0
begin
set @SQL = @SQL + ' top ' + @ReturnLimit
end
set @SQL = @SQL + ' row,ProductID,PortalID,TaxCategoryID,Featured,Archived,CreatedByUser,CreatedDate,IsDeleted,ProductRef,Lang,Summary,[Description],Manufacturer,FromPrice,QtyRemaining,ImageID,ImageURL,ImageDesc,ProductName,[XMLData] '
set @SQL = @SQL + ' FROM '
set @SQL = @SQL + ' (select ROW_NUMBER() OVER ('
if @OrderBy='man'
begin
if @OrderDESC=1
set @SQL = @SQL + ' order by PL.Manufacturer DESC,P.ProductRef DESC'
else
set @SQL = @SQL + ' order by PL.Manufacturer,P.ProductRef'
end
if @OrderBy='ref'
begin
if @OrderDESC=1
set @SQL = @SQL + ' order by P.ProductRef DESC,PL.Manufacturer DESC'
else
set @SQL = @SQL + ' order by P.ProductRef,PL.Manufacturer'
end
if @OrderBy='name'
begin
if @OrderDESC=1
set @SQL = @SQL + ' order by PL.ProductName DESC,PL.Manufacturer DESC'
else
set @SQL = @SQL + ' order by PL.ProductName,PL.Manufacturer'
end
if @OrderBy='price'
begin
if @OrderDESC=1
set @SQL = @SQL + ' order by {databaseOwner}{objectQualifier}NEvoWeb_NB_Store_FGetProductBasePrice(P.ProductID) DESC,PL.Manufacturer DESC,P.ProductRef DESC'
else
set @SQL = @SQL + ' order by {databaseOwner}{objectQualifier}NEvoWeb_NB_Store_FGetProductBasePrice(P.ProductID),PL.Manufacturer,P.ProductRef'
end
if @OrderBy='cdate'
begin
if @OrderDESC=1
set @SQL = @SQL + ' order by P.CreatedDate DESC'
else
set @SQL = @SQL + ' order by P.CreatedDate'
end
if @OrderBy=''
begin
set @SQL = @SQL + ' order by PL.Manufacturer,P.ProductRef'
end
set @SQL = @SQL + ') AS row, '
set @SQL = @SQL + ' P.ProductID,'
set @SQL = @SQL + ' PortalID,'
set @SQL = @SQL + ' P.TaxCategoryID,'
set @SQL = @SQL + ' Featured,'
set @SQL = @SQL + ' Archived,'
set @SQL = @SQL + ' CreatedByUser,'
set @SQL = @SQL + ' CreatedDate,'
set @SQL = @SQL + ' ModifiedDate,'
set @SQL = @SQL + ' IsDeleted,'
set @SQL = @SQL + ' ProductRef,'
set @SQL = @SQL + ' Lang,'
set @SQL = @SQL + ' Summary,'
set @SQL = @SQL + ' Description,'
set @SQL = @SQL + ' Manufacturer,'
set @SQL = @SQL + ' {databaseOwner}{objectQualifier}NEvoWeb_NB_Store_FGetProductBasePrice(P.ProductID) as FromPrice,'
set @SQL = @SQL + ' isnull((select sum(QtyRemaining) from {databaseOwner}{objectQualifier}NB_Store_Model where productid = P.ProductID and qtyremaining != 0),0) as QtyRemaining,'
set @SQL = @SQL + ' isnull((select sum(QtyStockSet) from {databaseOwner}{objectQualifier}NB_Store_Model where productid = P.ProductID),0) as QtyStockSet,'
set @SQL = @SQL + ' (select top 1 ImageID from {databaseOwner}{objectQualifier}NB_Store_ProductImage AS I where productid = P.ProductID order by listorder) as ImageID,'
set @SQL = @SQL + ' (select top 1 ImageURL from {databaseOwner}{objectQualifier}NB_Store_ProductImage AS I where productid = P.ProductID order by listorder) as ImageURL,'
set @SQL = @SQL + ' (select top 1 ImageDesc from {databaseOwner}{objectQualifier}NB_Store_ProductImage AS I inner join {databaseOwner}{objectQualifier}NB_Store_ProductImageLang as IL on IL.ImageID = I.ImageID and IL.Lang = PL.Lang where productid = P.ProductID order by listorder) as ImageDesc,'
set @SQL = @SQL + ' PL.ProductName,'
set @SQL = @SQL + ' PL.[XMLData]'
set @SQL = @SQL + ' from {databaseOwner}[{objectQualifier}NB_Store_Products] as P'
set @SQL = @SQL + ' inner join {databaseOwner}{objectQualifier}NB_Store_ProductLang as PL on P.ProductID = PL.ProductID and PL.Lang = ''' + @Lang + ''''
if (@CategoryID > 0 and @Filter = '')
begin
set @SQL = @SQL + ' inner join {databaseOwner}{objectQualifier}NB_Store_ProductCategory as PC on PC.ProductID = P.ProductID '
end
set @SQL = @SQL + ' where P.PortalID = ' + convert(nvarchar(5),@PortalID)
if @FeaturedOnly = 1
begin
set @SQL = @SQL + ' and P.Featured = 1 '
end
if @GetArchived = 0
begin
set @SQL = @SQL + ' and not P.IsDeleted = 1 and not P.Archived = 1'
end
if (@CategoryID > 0 and @Filter = '')
begin
set @SQL = @SQL + ' and PC.CategoryID = ' + convert(nvarchar(5),@CategoryID)
end
if @Filter != ''
begin
set @SQL = @SQL + ' and (PL.ProductName like ''%' + @Filter + '%'' or P.ProductRef like ''%' + @Filter + '%'' or PL.Summary like ''%' + @Filter + '%'' or PL.Manufacturer like ''%' + @Filter + '%'' '
if @SearchDescription = 1
begin
set @SQL = @SQL + ' or PL.Description like ''%' + @Filter + '%'' '
end
set @SQL = @SQL + ')'
end
set @SQL = @SQL + ') AS NB_Store_ProductsPage '
if @PageSize > 0
begin
set @SQL = @SQL + ' WHERE Row between ((' + convert(nvarchar(5),(@PageIndex - 1)) + ' * ' + convert(nvarchar(5),@PageSize) + ') + 1) and ' + convert(nvarchar(5),(@PageIndex*@PageSize))
end
exec sp_executesql @SQL
end
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
if exists (select * from dbo.sysobjects where id = object_id(N'{databaseOwner}[{objectQualifier}NEvoweb_NB_Store_Products_GetListSize]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure {databaseOwner}[{objectQualifier}NEvoweb_NB_Store_Products_GetListSize]
GO
/*
Author: DCL
Last Modified for NB_Store version: 02.00.11
*/
CREATE PROCEDURE {databaseOwner}[{objectQualifier}NEvoweb_NB_Store_Products_GetListSize]
@PortalID int,
@CategoryID int,
@Lang char(5),
@Filter nvarchar(50),
@GetArchived bit,
@FeaturedOnly bit,
@SearchDescription bit
AS
begin
declare @SQL nvarchar(2000)
set @SQL = 'select count(P.productid) '
set @SQL = @SQL + ' from {databaseOwner}[{objectQualifier}NB_Store_Products] as P'
set @SQL = @SQL + ' inner join {databaseOwner}{objectQualifier}NB_Store_ProductLang as PL on P.ProductID = PL.ProductID and PL.Lang = ''' + @Lang + ''''
if (@CategoryID > 0 and @Filter = '')
begin
set @SQL = @SQL + ' inner join {databaseOwner}{objectQualifier}NB_Store_ProductCategory as PC on PC.ProductID = P.ProductID '
end
set @SQL = @SQL + ' where P.PortalID = ' + convert(nvarchar(5),@PortalID)
if @FeaturedOnly = 1
begin
set @SQL = @SQL + ' and P.Featured = 1 '
end
if @GetArchived = 0
begin
set @SQL = @SQL + ' and not P.IsDeleted = 1 and not P.Archived = 1'
end
if (@CategoryID > 0 and @Filter = '')
begin
set @SQL = @SQL + ' and PC.CategoryID = ' + convert(nvarchar(5),@CategoryID)
end
if @Filter != ''
begin
set @SQL = @SQL + ' and (PL.ProductName like ''%' + @Filter + '%'' or P.ProductRef like ''%' + @Filter + '%'' or PL.Summary like ''%' + @Filter + '%'' or PL.Manufacturer like ''%' + @Filter + '%'' '
if @SearchDescription = 1
begin
set @SQL = @SQL + ' or PL.Description like ''%' + @Filter + '%'' '
end
set @SQL = @SQL + ')'
end
exec sp_executesql @SQL
end
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO