/projects/_commons/vbs/detalle_productos_cotizados.vbs

# · Visual Basic · 149 lines · 64 code · 27 blank · 58 comment · 3 complexity · 880f08b4810db071c5b387571ebf78da MD5 · raw file

  1. option explicit
  2. sub DetalleProductosCotizados_EMail()
  3. stop
  4. ' Iniciar Outlook.
  5. ' Si ya se está ejecutando, utilizará la misma instancia...
  6. Dim olApp 'As Outlook.Application
  7. Set olApp = CreateObject("Outlook.Application")
  8. 'Inicio de sesión. No importa si ya lo está ejecutando y tiene iniciada una sesión...
  9. Dim olNs 'As Outlook.NameSpace
  10. Set olNs = olApp.GetNamespace("MAPI")
  11. olNs.Logon
  12. '
  13. ' ' Crear y abrir un contacto nuevo.
  14. ' Dim olItem 'As Outlook.ContactItem
  15. ' Set olItem = olApp.CreateItem(olContactItem)
  16. '
  17. ' 'Configurar la información de contacto...
  18. ' With olItem
  19. ' .FullName = "James Smith"
  20. ' .Birthday = "9/15/1975"
  21. ' .CompanyName = "Microsoft"
  22. ' .HomeTelephoneNumber = "704-555-8888"
  23. ' .Email1Address = "alguien@microsoft.com"
  24. ' .JobTitle = "Developer"
  25. ' .HomeAddress = "111 Main St."
  26. ' End With
  27. '
  28. ' ' Guardar el contacto...
  29. ' olItem.Save
  30. '
  31. ' ' Crear una nueva cita.
  32. ' Dim olAppt 'As Outlook.AppointmentItem
  33. ' Set olAppt = olApp.CreateItem(olAppointmentItem)
  34. '
  35. ' ' Establecer la hora de inicio 2 minutos a partir de ahora...
  36. ' olAppt.Start = Now() + (2# / 24# / 60#)
  37. '
  38. ' ' Configurar la información de otra cita...
  39. ' With olAppt
  40. ' .Duration = 60
  41. ' .Subject = "Reunión para discutir los planes..."
  42. ' .Body = "Reunión con ? para discutir los planes."
  43. ' .Location = "Oficina doméstica"
  44. ' .ReminderMinutesBeforeStart = 1
  45. ' .ReminderSet = True
  46. ' End With
  47. '
  48. ' ' Guardar la cita...
  49. ' olAppt.Save
  50. '
  51. ' Enviar un mensaje al nuevo contacto.
  52. Dim olMail 'As Outlook.MailItem
  53. Set olMail = olApp.CreateItem(olMailItem)
  54. ' Rellenar y enviar el mensaje...
  55. olMail.To = "lsardi@toyota.com.ar"
  56. olMail.Subject = "Acerca de nuestra reunión..."
  57. olMail.Body = "Estimado/a"
  58. olMail.Send
  59. ' Limpiar...
  60. MsgBox "Todo terminado...", vbMsgBoxSetForeground
  61. olNS.Logoff
  62. Set olNs = Nothing
  63. Set olMail = Nothing
  64. ' Set olAppt = Nothing
  65. ' Set olItem = Nothing
  66. Set olApp = Nothing
  67. end sub
  68. ' impedir modificar una orden que no esta en estado pendiente
  69. function VUI_DetalleProductosCotizados_OnEndEditEvent(byval sNameUI)
  70. VUI_DetalleProductosCotizados_OnEndEditEvent = VUI_OTP_OnEndEditEvent(sNameUI)
  71. end function
  72. public sub DetalleProductosCotizados_VUI_OnHtmlRefresh(byval sNameUI)
  73. dim sHtml
  74. dim oObject
  75. dim oFactura
  76. ' obtengo el objeto del que habla la UI
  77. if ( sNameUI = sSTANDAR_UI ) then
  78. set oObject = oApp.oUIs.Item(sNameUI).oViewUI.oObjectSelected
  79. else
  80. set oObject = oApp.oUIs.Item(sNameUI).oObject
  81. end if
  82. ' verifico haber obtenido un objeto
  83. if not oObject is nothing then
  84. ' armo la factura
  85. set oFactura = new CDetalleProductosCotizados
  86. set oFactura.oObject = oObject
  87. ' asigno el html
  88. oApp.oUIs.Item(sNameUI).oViewUI.SetHtmlText oFactura.sHtml()
  89. else
  90. call base_VUI_OnHtmlRefresh(sNameUI)
  91. end if
  92. end sub
  93. ' Actualiza los items, asignando a cada uno el precio que le corresponde, en base al precio del producto y las listas de precios.
  94. public sub WF_RefreshInvoicePrices()
  95. dim oOte
  96. dim oItems
  97. dim oItem
  98. dim oPrecio
  99. for each oOte in oGeneratedObjects
  100. set oItems = oOte.oViewProperty("items")
  101. Call oItems.Open() ' Intenta abrir la vista
  102. If oItems.IsOpen() Then ' Si la vista pudo abrirse
  103. If Not oItems.IsEOF() Then
  104. Call oItems.MoveFirst() ' Se posiciona
  105. Do While Not oItems.IsEOF() ' Recorre la vista
  106. set oItem = oItems.oObject()
  107. ' BUG: A partir de la version 1.1.x.x, las vistas manejas un buffer independiente del storage.
  108. ' Esto genera el problema cuando se saca un objeto de una vista se modifica y se manda a guardar,
  109. ' no se guardan los cambios porque se esta usando el del buffer de la vista que es diferente al
  110. ' del buffer del storage.
  111. ' set oItem = oApp.oStorage.LoadObject(oItem.sClassName, "id='"& oItem.oSimpleProperty("id").sValue &"'")
  112. set oPrecio = oPrecioProductoParaItem( oOte, oItem )
  113. oItem.oSimpleProperty("id_moneda").sValue = oPrecio.oSimpleProperty("id_moneda").sValue
  114. oItem.oSimpleProperty("precio_unitario").fValue = oPrecio.oSimpleProperty("precio").fValue
  115. oItem.oSimpleProperty("precio_unitario_referencia").fValue = oItem.oSimpleProperty("precio_unitario").fValue * oPrecio.oObjectProperty("id_moneda").oSimpleProperty("factor").fValue
  116. oItem.save
  117. call oItems.MoveNext()
  118. loop
  119. end if
  120. end if
  121. next
  122. end sub