-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmPedidos.aspx.vb
219 lines (195 loc) · 11 KB
/
frmPedidos.aspx.vb
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
Imports Modulo
Imports System.Xml
Imports System.Globalization
Partial Class frmPedidos
Inherits System.Web.UI.Page
Public ws As DIS.DIServer
Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
If Not Page.IsPostBack Then
Try
Session("pagIni") = 1
cargaPedidos()
Catch ex As Exception
ClientScript.RegisterStartupScript(Me.[GetType](), "aleasrt", "alert(' error " & ex.Message & "'); ", True)
End Try
End If
End Sub
Protected Sub cargaPedidos()
'Busqueda de facturas venciadas Balance
Dim tRow As New TableRow()
Dim tCell As New TableCell()
ws = New DIS.DIServer
ws.Url = "http://SERVERIII/SAP/DIServer.asmx"
Try
Dim Respuesta As XmlNode
Dim sqldato As String = "SELECT CONVERT(int,ROW_NUMBER() OVER ( ORDER BY T0.[docdate] DESC)) AS 'RowNum' , T0.[CardCode], T0.[DocDate], T0.[DocNum], T0.[Comments],T0.[DocTotalFC], T0.[DocTotal]," &
"T0.[PaidToDate], T0.[ObjType],T0.[DocEntry] FROM [dbo].[ORDR] T0 " &
"WHERE T0.[CardCode] = '" & Session("RazCode") & "' AND T0.[DocStatus] = 'O' AND T0.[CANCELED] = 'N' order by DocNum DESC"
Respuesta = ws.ExecuteSQL(Session("Token"), sqldato)
Dim totalrows As Integer = ReadXML(Respuesta.InnerXml, "RowNum")
Dim n As Integer
Dim edoc As String = ""
Dim contapag As Integer = 0
Dim inic As Integer
Dim finic As Integer
'Revolution PAgin
Dim configcant As Integer = Session("configartcan")
If totalrows > configcant Then
Dim nacho As Integer = Math.Ceiling(totalrows / Session("configartcan"))
PaginationDiv.InnerHtml = " <ul class='pagination pagination-lg'>"
If nacho > 1 Then
If nacho > 3 Then
'checa inicio
If (Session("pagIni") - 1) <= 1 Then
inic = 1
ElseIf (Session("pagIni")) = nacho Then
inic = (Session("pagIni") - 2)
Else
inic = (Session("pagIni") - 1)
End If
'checa final
If (Session("pagIni") + 1) >= nacho Then
finic = nacho
ElseIf (Session("pagIni")) = 1 Then
finic = (Session("pagIni") + 2)
Else
finic = (Session("pagIni") + 1)
End If
If Session("pagIni") > 1 Then
PaginationDiv.InnerHtml = PaginationDiv.InnerHtml + " <li style='cursor: pointer; ' class='' id='row" & (Session("pagIni") - 1) & "' onclick='discre( id)'><a><i class='fa fa-arrow-left'></i></a></li>"
End If
If inic > 2 Then
PaginationDiv.InnerHtml = PaginationDiv.InnerHtml + "<li style='cursor: pointer; ' class='' id='row1' onclick='discre( id)'><a>1</a></li><li><a>...</a></li>"
End If
For n = inic To finic
If n = Session("pagIni") Then
PaginationDiv.InnerHtml = PaginationDiv.InnerHtml + "<li style='cursor: pointer; ' class='active' id='row" & n & "' onclick='discre( id)'><a>" & n & "</a></li>"
Else
PaginationDiv.InnerHtml = PaginationDiv.InnerHtml + "<li style='cursor: pointer; ' class='' id='row" & n & "' onclick='discre( id)'><a>" & n & "</a></li>"
End If
Next
If (Session("pagIni") + 2) <= nacho Then
PaginationDiv.InnerHtml = PaginationDiv.InnerHtml + "<li><a>...</a></li><li style='cursor: pointer; ' class='' id='row" & nacho & "' onclick='discre( id)'><a>" & nacho & "</a></li>"
End If
If Session("pagIni") < nacho Then
PaginationDiv.InnerHtml = PaginationDiv.InnerHtml + "<li style='cursor: pointer; ' class='' id='row" & (Session("pagIni") + 1) & "' onclick='discre( id)'><a><i class='fa fa-arrow-right'></i></a></li>"
End If
Else
For n = 1 To nacho
If n = Session("pagIni") Then
PaginationDiv.InnerHtml = PaginationDiv.InnerHtml + "<li style='cursor: pointer; ' class='active' id='row" & n & "' onclick='discre( id)'><a>" & n & "</a></li>"
Else
PaginationDiv.InnerHtml = PaginationDiv.InnerHtml + "<li style='cursor: pointer; ' class='' id='row" & n & "' onclick='discre( id)'><a>" & n & "</a></li>"
End If
Next
End If
PaginationDiv.InnerHtml = PaginationDiv.InnerHtml + " </ul>"
Else
PaginationDiv.InnerHtml = ""
End If
Else
PaginationDiv.InnerHtml = ""
End If
'Finalize de paginacion
Dim bandera As Boolean = True
Dim doc2 As New XmlDocument()
doc2.LoadXml(Respuesta.InnerXml)
System.Diagnostics.Debug.Write(Respuesta.InnerXml & vbCrLf)
Dim root2 As XmlNode = doc2.FirstChild
Dim rootin As XmlNode
root2 = root2.LastChild
'root2 = root2.FirstChild
If root2.HasChildNodes Then
Dim s As Integer
For s = 0 To root2.ChildNodes.Count - 1
rootin = root2.ChildNodes(s)
bandera = True
If rootin.HasChildNodes Then
Dim x As Integer
tRow = New TableRow()
Session("fcsi") = 0
For x = 0 To rootin.ChildNodes.Count - 1
Select Case rootin.ChildNodes(x).Name
Case "RowNum"
If CInt(rootin.ChildNodes(x).InnerText) > (Session("configartcan") * Session("pagIni")) Then
bandera = False
End If
If Session("pagIni") <> 1 Then
If CInt(rootin.ChildNodes(x).InnerText) < (Session("configartcan") * (Session("pagIni") - 1)) Then
bandera = False
End If
End If
Case "DocDate"
tCell = New TableCell()
'tCell.Text = DateTime.ParseExact((rootin.ChildNodes(x).InnerText), "yyyyMMdd", CultureInfo.InvariantCulture)
tCell.Text = Mid(rootin.ChildNodes(x).InnerText, 7, 2) + "/" + Mid(rootin.ChildNodes(x).InnerText, 5, 2) + "/" + Mid(rootin.ChildNodes(x).InnerText, 1, 4)
'Mid(Nodo("DocDate").InnerText, 7, 2) + "/" + Mid(Nodo("DocDate").InnerText, 5, 2) + "/" + Mid(Nodo("DocDate").InnerText, 1, 4)
tRow.Cells.Add(tCell)
Case "DocNum"
tCell = New TableCell()
tCell.Text = rootin.ChildNodes(x).InnerText
tRow.Cells.Add(tCell)
Case "Comments"
tCell = New TableCell()
tCell.Text = rootin.ChildNodes(x).InnerText
tRow.Cells.Add(tCell)
Case "DocTotalFC"
If Convert.ToDouble(rootin.ChildNodes(x).InnerText) > 0 Then
tCell = New TableCell()
tCell.Text = Session("RazMON") + " " + String.Format("{0:N}", Convert.ToDouble(rootin.ChildNodes(x).InnerText))
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Session("fcsi") = 1
End If
Case "DocTotal"
If Session("fcsi") = 0 Then
tCell = New TableCell()
tCell.Text = Session("RazMON") + " " + String.Format("{0:N}", Convert.ToDouble(rootin.ChildNodes(x).InnerText))
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
End If
Case "DocEntry"
tCell = New TableCell()
tCell.Text = "<button class='btn btn-info' id='row" & rootin.ChildNodes(x).InnerText & "' onclick='ver( id)'>Ver <i class='fa fa-eye'></i></button>"
tCell.HorizontalAlign = HorizontalAlign.Center
tRow.Cells.Add(tCell)
End Select
Next x
If bandera = True Then
Table1.Rows.Add(tRow)
End If
End If
Next s
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
Protected Sub secretbutton_ServerClick(sender As Object, e As EventArgs) Handles secretbutton.ServerClick
Session("pedidoview") = actuaid.Value
Response.Redirect("frmPedidosView.aspx")
End Sub
Private Function ReadXML(Xml As String, NodeName As String)
Dim reader As System.Xml.XmlTextReader = New System.Xml.XmlTextReader(New System.IO.StringReader(Xml))
Dim mayor As Integer = 0
Dim valor As String
valor = ""
Do While (reader.Read())
If reader.NodeType = System.Xml.XmlNodeType.Element Then
If reader.Name.ToUpper = NodeName.ToUpper Then
valor = reader.ReadElementContentAsString
If mayor < CInt(valor) Then
mayor = CInt(valor)
End If
End If
End If
Loop
reader.Close()
reader.Dispose()
Return mayor
End Function
Protected Sub botonpagina_ServerClick(sender As Object, e As EventArgs) Handles botonpagina.ServerClick
Session("pagIni") = idpagina.Value
cargaPedidos()
End Sub
End Class