|
|
@@ -18,12 +18,78 @@ Class KitModel_Class |
|
|
|
|
|
|
|
End CLass |
|
|
|
|
|
|
|
Class IndexKitModel_Class |
|
|
|
Public Validator |
|
|
|
Public Class_Get_Properties |
|
|
|
|
|
|
|
Public ID |
|
|
|
Public JobNumber '90 |
|
|
|
Public Jurisdiction '106 |
|
|
|
Public LabelCount '106 |
|
|
|
Public CreatedOn |
|
|
|
Public LabelsPrinted |
|
|
|
Public ExportedToSnailWorks |
|
|
|
|
|
|
|
Private Sub Class_Initialize |
|
|
|
'ValidateExitsts Me, "","" |
|
|
|
Class_Get_Properties = Array("ID, JobNumber, Jurisdiction,LabelCount,CreatedOn,LabelsPrinted,ExportedToSnailWorks") |
|
|
|
End Sub |
|
|
|
End Class |
|
|
|
|
|
|
|
|
|
|
|
'======================================================================================================================= |
|
|
|
' Kit Repository |
|
|
|
'======================================================================================================================= |
|
|
|
|
|
|
|
Class KitRepository_Class |
|
|
|
|
|
|
|
Public Function PagedIndexView(per_page, page_num, ByRef page_count, ByRef record_count) |
|
|
|
dim sql : sql = "SELECT Kit.ID,Kit.JobNumber as [JobNumber], " &_ |
|
|
|
"Jurisdiction.Name As Jurisdiction," &_ |
|
|
|
"(SELECT COUNT(*) From KitLabels Where KitId = Kit.ID)" &_ |
|
|
|
" As [LabelCount],[CreatedOn],[LabelsPrinted],[ExportedToSnailWorks] FROM Kit INNER JOIN Jurisdiction ON Kit.Jcode = Jurisdiction.JCode;" |
|
|
|
|
|
|
|
dim list : set list = new LinkedList_Class |
|
|
|
dim rs : set rs = DAL.PagedQuery(sql, empty, per_page, page_num) |
|
|
|
If Not rs.EOF and Not (IsEmpty(per_page) and IsEmpty(page_num) and IsEmpty(page_count) and IsEmpty(record_count)) then |
|
|
|
rs.PageSize = per_page |
|
|
|
rs.AbsolutePage = page_num |
|
|
|
page_count = rs.PageCount |
|
|
|
record_count = rs.RecordCount |
|
|
|
End If |
|
|
|
set PagedIndexView = PagedIndexViewKitList(rs, per_page) |
|
|
|
Destroy rs |
|
|
|
End Function |
|
|
|
|
|
|
|
Private Function PagedIndexViewKitList(rs, per_page) |
|
|
|
dim list : set list = new LinkedList_Class |
|
|
|
|
|
|
|
dim x : x =0 |
|
|
|
Do While x < per_page and Not rs.EOF |
|
|
|
list.Push Automapper.AutoMap(rs, new IndexKitModel_Class) |
|
|
|
x = x +1 |
|
|
|
rs.MoveNext |
|
|
|
Loop |
|
|
|
set PagedIndexViewKitList = list |
|
|
|
End Function |
|
|
|
|
|
|
|
Public Function SwitchBoardEditFindById(ID) |
|
|
|
dim sql : sql = "SELECT Kit.ID,Kit.JobNumber as [JobNumber], " &_ |
|
|
|
"Jurisdiction.Name As Jurisdiction," &_ |
|
|
|
"(SELECT COUNT(*) From KitLabels Where KitId = Kit.ID)" &_ |
|
|
|
" As [LabelCount],[CreatedOn],[LabelsPrinted],[ExportedToSnailWorks] FROM Kit INNER JOIN Jurisdiction ON Kit.Jcode = Jurisdiction.JCode " &_ |
|
|
|
"WHERE ID = ?" |
|
|
|
|
|
|
|
dim rs : set rs = DAL.Query(sql,ID) |
|
|
|
If rs.EOF then |
|
|
|
Err.Raise 1, "KitRepository_Class", KitNotFoundException("ID", ID) |
|
|
|
Else |
|
|
|
set SwitchBoardEditFindByID = Automapper.AutoMap(rs,"IndexKitModel_Class") |
|
|
|
End If |
|
|
|
|
|
|
|
|
|
|
|
End Function |
|
|
|
|
|
|
|
Public Function FindByID(ID) |
|
|
|
dim sql : sql = "Select [ID], [JobNumber], [Jcode] FROM [Kit] WHERE ID = ?" |
|
|
|
dim rs : set rs = DAL.Query(sql,ID) |
|
|
|