-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmPedidosView.aspx.vb
275 lines (208 loc) · 10.9 KB
/
frmPedidosView.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
269
270
271
272
273
274
275
Imports Modulo
Imports System.Xml
Imports System.Globalization
Imports System.Drawing
Partial Class frmPedidosView
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
Dim myvar As String = Session("pedidoview")
'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 fechastring = Today.ToString("yyyy-MM-dd")
Dim Respuesta As XmlNode
Respuesta = ws.ReadObjects(Session("Token"), "oOrders", "DocEntry", myvar)
viewCliente.Text = ReadXML(Respuesta.InnerXml, "CardCode")
viewCardName.Text = ReadXML(Respuesta.InnerXml, "CardName")
viewDocdate.Text = DateTime.ParseExact(ReadXML(Respuesta.InnerXml, "Docdate"), "yyyyMMdd", CultureInfo.InvariantCulture)
viewDocDuedate.Text = DateTime.ParseExact(ReadXML(Respuesta.InnerXml, "DocDuedate"), "yyyyMMdd", CultureInfo.InvariantCulture)
viewNum.Text = ReadXML(Respuesta.InnerXml, "DocNum")
viewmoneda.Text = ReadXML(Respuesta.InnerXml, "DocCurrency")
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
' root2 = root2.SelectNodes("/Document_Lines")
root2 = root2.ChildNodes(2)
If root2.HasChildNodes Then
Dim s As Integer
For s = 0 To root2.ChildNodes.Count - 1
rootin = root2.ChildNodes(s)
Dim ItemCode, ItemDescription, Quantity, Price, LineTotal, Currency, Pendientes As String
If rootin.HasChildNodes Then
Dim x As Integer
tRow = New TableRow()
For x = 0 To rootin.ChildNodes.Count - 1
If Session("RazMON") = "USD" Then
Select Case rootin.ChildNodes(x).Name
Case "ItemCode"
ItemCode = rootin.ChildNodes(x).InnerText
Case "ItemDescription"
ItemDescription = rootin.ChildNodes(x).InnerText
Case "Quantity"
Quantity = rootin.ChildNodes(x).InnerText
Case "Price"
Price = rootin.ChildNodes(x).InnerText
Case "RowTotalFC"
LineTotal = rootin.ChildNodes(x).InnerText
Case "Currency"
Currency = rootin.ChildNodes(x).InnerText
Case "RemainingOpenQuantity"
Pendientes = rootin.ChildNodes(x).InnerText
End Select
Else
Select Case rootin.ChildNodes(x).Name
Case "ItemCode"
ItemCode = rootin.ChildNodes(x).InnerText
Case "ItemDescription"
ItemDescription = rootin.ChildNodes(x).InnerText
Case "Quantity"
Quantity = rootin.ChildNodes(x).InnerText
Case "Price"
Price = rootin.ChildNodes(x).InnerText
Case "LineTotal"
LineTotal = rootin.ChildNodes(x).InnerText
Case "Currency"
Currency = rootin.ChildNodes(x).InnerText
Case "RemainingOpenQuantity"
Pendientes = rootin.ChildNodes(x).InnerText
End Select
End If
Next x
tCell = New TableCell()
tCell.Text = ItemCode
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = ItemDescription
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = CInt(Quantity)
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = CInt(Quantity - Pendientes)
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = Currency + " " + String.Format("{0:N}", Convert.ToDouble(Price))
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = Session("RazMON") + " " + String.Format("{0:N}", Convert.ToDouble(LineTotal))
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
If CInt(Quantity - Pendientes) > 0 Then
If CInt(Quantity - Pendientes) = Quantity Then
tRow.BackColor = ColorTranslator.FromHtml("#2cae19")
Else
tRow.BackColor = ColorTranslator.FromHtml("#e3db20")
End If
Else
tRow.BackColor = ColorTranslator.FromHtml("#e2776b")
End If
Table1.Rows.Add(tRow)
End If
Next s
End If
tRow = New TableRow()
tCell = New TableCell()
tCell.Text = " "
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = " "
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = " "
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = " "
tRow.Cells.Add(tCell)
tCell = New TableHeaderCell()
tCell.Text = "Subtotal"
tRow.Cells.Add(tCell)
tCell = New TableCell()
If Session("RazMON") = "USD" Then
tCell.Text = Session("RazMON") + " " + String.Format("{0:N}", Convert.ToDouble(ReadXML(Respuesta.InnerXml, "DocTotalFc") - Convert.ToDouble(ReadXML(Respuesta.InnerXml, "VatSumFc"))))
Else
tCell.Text = Session("RazMON") + " " + String.Format("{0:N}", Convert.ToDouble(ReadXML(Respuesta.InnerXml, "DocTotal") - Convert.ToDouble(ReadXML(Respuesta.InnerXml, "VatSum"))))
End If
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
tRow = New TableRow()
tCell = New TableCell()
tCell.Text = " "
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = " "
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = " "
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = " "
tRow.Cells.Add(tCell)
tCell = New TableHeaderCell()
tCell.Text = "Impuesto"
tRow.Cells.Add(tCell)
tCell = New TableCell()
If Session("RazMON") = "USD" Then
tCell.Text = Session("RazMON") + " " + String.Format("{0:N}", Convert.ToDouble(ReadXML(Respuesta.InnerXml, "VatSumFc")))
Else
tCell.Text = Session("RazMON") + " " + String.Format("{0:N}", Convert.ToDouble(ReadXML(Respuesta.InnerXml, "VatSum")))
End If
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
tRow = New TableRow()
tCell = New TableCell()
tCell.Text = " "
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = " "
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = " "
tRow.Cells.Add(tCell)
tCell = New TableCell()
tCell.Text = " "
tRow.Cells.Add(tCell)
tCell = New TableHeaderCell()
tCell.Text = "Total"
tRow.Cells.Add(tCell)
tCell = New TableCell()
If Session("RazMON") = "USD" Then
tCell.Text = Session("RazMON") + " " + String.Format("{0:N}", Convert.ToDouble(ReadXML(Respuesta.InnerXml, "DocTotalFc")))
Else
tCell.Text = Session("RazMON") + " " + String.Format("{0:N}", Convert.ToDouble(ReadXML(Respuesta.InnerXml, "DocTotal")))
End If
tCell.HorizontalAlign = HorizontalAlign.Right
tRow.Cells.Add(tCell)
Table1.Rows.Add(tRow)
Catch ex As Exception
System.Diagnostics.Debug.Write(ex.Message + " errorrr" & vbCrLf)
End Try
End If
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 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
End If
End If
Loop
reader.Close()
reader.Dispose()
Return valor
End Function
End Class