-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmInicio.aspx.vb
268 lines (223 loc) · 12 KB
/
frmInicio.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
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
Imports Modulo
Imports System.Xml
Partial Class frmInicio
Inherits System.Web.UI.Page
Public ws As DIS.DIServer
Protected Sub Page_Load(sender As Object, e As EventArgs) Handles Me.Load
'Busqueda de facturas venciadas Balance
Dim tRow As New TableRow()
Dim tCell As New TableCell()
Try
ws = New DIS.DIServer
ws.Url = "http://SERVERIII/SAP/DIServer.asmx"
Dim Respuesta As XmlNode
Respuesta = ws.ExecuteSQL(Session("Token"), "Select top 1 Currency,Balance,BalanceFC ,OrdersBal ,OrderBalFC from OCRD where CardCode='" & Session("RazCode") & "'")
Dim doc As New XmlDocument()
doc.LoadXml(Respuesta.InnerXml)
System.Diagnostics.Debug.Write(Respuesta.InnerXml & vbCrLf)
Dim root As XmlNode = doc.FirstChild
root = root.LastChild
root = root.FirstChild
If root.HasChildNodes Then
Dim i As Integer
For i = 0 To root.ChildNodes.Count - 1
Select Case root.ChildNodes(i).Name
Case "Currency"
Session("currency") = root.ChildNodes(i).InnerText
If Session("currency") = "##" Or Session("currency") = Session("ML") Then
Session("currency") = Session("MS")
End If
tCell = New TableHeaderCell()
tCell.Text = "Documentos"
tRow.Cells.Add(tCell)
tCell = New TableHeaderCell()
tCell.Text = "Saldo" + " " + Session("ML")
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
tCell = New TableHeaderCell()
tCell.Text = "Saldo" + " " + Session("currency")
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
tRow = New TableRow()
tCell = New TableCell()
tCell.Text = ("Facturas vencidas")
tRow.Cells.Add(tCell)
Case "Balance"
tCell = New TableCell()
tCell.Text = String.Format("{0:N}", Convert.ToDouble(root.ChildNodes(i).InnerText)) + " " + Session("ML")
tRow.Cells.Add(tCell)
tCell.HorizontalAlign = HorizontalAlign.Right
Table1.Rows.Add(tRow)
Case "BalanceFC"
tCell = New TableCell()
tCell.Text = String.Format("{0:N}", Convert.ToDouble(root.ChildNodes(i).InnerText))
tCell.Text = tCell.Text + " " + Session("currency")
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
Case "OrdersBal"
Session("OrdersBal") = root.ChildNodes(i).InnerText
Case "OrderBalFC"
Session("OrdersBalFC") = root.ChildNodes(i).InnerText
End Select
Next i
End If
'Busqueda de facturas por vencer fecha 0 a 15.
Dim today As Date = DateTime.Now
Dim answer As Date = today.AddDays(15)
Dim fechastring = answer.ToString("yyyyMMdd")
Dim ahora = DateTime.Now.ToString("yyyyMMdd")
Dim sqlquery As String = " select sum(DocTotal) as suma,sum(DocTotalFC) as sumafc from OINV where DocStatus='O' AND CardCode ='" & Session("RazCode") & "' and DocDueDate <='" & fechastring & "' and DocDueDate >='" & ahora & "'"
Respuesta = ws.ExecuteSQL(Session("Token"), sqlquery)
doc = New XmlDocument()
doc.LoadXml(Respuesta.InnerXml)
System.Diagnostics.Debug.Write(Respuesta.InnerXml & vbCrLf)
root = doc.FirstChild
root = root.LastChild
root = root.FirstChild
If root.HasChildNodes Then
tRow = New TableRow()
tCell = New TableCell()
tCell.Text = ("Facturas próximas a vencer 0-15 días")
tRow.Cells.Add(tCell)
Dim i As Integer
For i = 0 To root.ChildNodes.Count - 1
Select Case root.ChildNodes(i).Name
Case "suma"
tCell = New TableCell()
tCell.Text = String.Format("{0:N}", Convert.ToDouble(root.ChildNodes(i).InnerText)) + " " + Session("ML")
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
Case "sumafc"
tCell = New TableCell()
tCell.Text = String.Format("{0:N}", Convert.ToDouble(root.ChildNodes(i).InnerText)) + " " + Session("currency")
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
End Select
Next i
End If
'Busqueda de facturas por vencer fecha 15 a 30.
today = DateTime.Now
answer = today.AddDays(15)
fechastring = answer.ToString("yyyyMMdd")
answer = today.AddDays(30)
Dim fechastring2 As String = answer.ToString("yyyyMMdd")
sqlquery = " select sum(DocTotal) as suma,sum(DocTotalFC) as sumafc from OINV where DocStatus='O' AND CardCode ='" & Session("RazCode") & "' and DocDueDate >='" & fechastring & "' and DocDueDate <='" & fechastring2 & "'"
Respuesta = ws.ExecuteSQL(Session("Token"), sqlquery)
doc = New XmlDocument()
doc.LoadXml(Respuesta.InnerXml)
System.Diagnostics.Debug.Write(Respuesta.InnerXml & vbCrLf)
root = doc.FirstChild
root = root.LastChild
root = root.FirstChild
If root.HasChildNodes Then
tRow = New TableRow()
tCell = New TableCell()
tCell.Text = ("Facturas próximas a vencer 15-30 días")
tRow.Cells.Add(tCell)
Dim i As Integer
For i = 0 To root.ChildNodes.Count - 1
Select Case root.ChildNodes(i).Name
Case "suma"
tCell = New TableCell()
tCell.Text = String.Format("{0:N}", Convert.ToDouble(root.ChildNodes(i).InnerText)) + " " + Session("ML")
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
Case "sumafc"
tCell = New TableCell()
tCell.Text = String.Format("{0:N}", Convert.ToDouble(root.ChildNodes(i).InnerText)) + " " + Session("currency")
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
End Select
Next i
End If
'Busqueda de facturas por vencer fecha 15 a 30.
today = DateTime.Now
answer = today.AddDays(30)
fechastring = answer.ToString("yyyyMMdd")
sqlquery = " select sum(DocTotal) as suma,sum(DocTotalFC) as sumafc from OINV where DocStatus='O' AND CardCode ='" & Session("RazCode") & "' and DocDueDate >='" & fechastring & "'"
Respuesta = ws.ExecuteSQL(Session("Token"), sqlquery)
doc = New XmlDocument()
doc.LoadXml(Respuesta.InnerXml)
System.Diagnostics.Debug.Write(Respuesta.InnerXml & vbCrLf)
root = doc.FirstChild
root = root.LastChild
root = root.FirstChild
If root.HasChildNodes Then
tRow = New TableRow()
tCell = New TableCell()
tCell.Text = ("Facturas próximas a vencer 30 días en adelante")
tRow.Cells.Add(tCell)
Dim i As Integer
For i = 0 To root.ChildNodes.Count - 1
Select Case root.ChildNodes(i).Name
Case "suma"
tCell = New TableCell()
tCell.Text = String.Format("{0:N}", Convert.ToDouble(root.ChildNodes(i).InnerText)) + " " + Session("ML")
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
Case "sumafc"
tCell = New TableCell()
tCell.Text = String.Format("{0:N}", Convert.ToDouble(root.ChildNodes(i).InnerText)) + " " + Session("currency")
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
End Select
Next i
End If
'agrega el saldo de los pedidos
tRow = New TableRow()
tCell = New TableCell()
tCell.Text = ("Pedidos")
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.HorizontalAlign = HorizontalAlign.Right
tCell.Text = String.Format("{0:N}", Convert.ToDouble(Session("OrdersBal"))) + " " + Session("ML")
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
tCell = New TableCell()
tCell.HorizontalAlign = HorizontalAlign.Right
tCell.Text = String.Format("{0:N}", Convert.ToDouble(Session("OrdersBalFC"))) + " " + Session("currency")
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
'anticio
Respuesta = ws.ExecuteSQL(Session("Token"), "Select sum(DocTotal) as suma,sum(DocTotalFC) as sumafc from ODPI where CardCode='" & Session("RazCode") & "' and DocStatus='O'")
doc = New XmlDocument()
doc.LoadXml(Respuesta.InnerXml)
System.Diagnostics.Debug.Write(Respuesta.InnerXml & vbCrLf)
root = doc.FirstChild
root = root.LastChild
root = root.FirstChild
If root.HasChildNodes Then
tRow = New TableRow()
tCell = New TableCell()
tCell.Text = ("Anticipos")
tRow.Cells.Add(tCell)
Dim i As Integer
For i = 0 To root.ChildNodes.Count - 1
Select Case root.ChildNodes(i).Name
Case "suma"
tCell = New TableCell()
tCell.Text = String.Format("{0:N}", Convert.ToDouble(root.ChildNodes(i).InnerText)) + " " + Session("ML")
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
Case "sumafc"
tCell = New TableCell()
tCell.Text = String.Format("{0:N}", Convert.ToDouble(root.ChildNodes(i).InnerText)) + " " + Session("currency")
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
End Select
Next i
End If
Catch ex As Exception
End Try
End Sub
End Class