21 lines
602 B
VB.net
21 lines
602 B
VB.net
Public Class vf_liquidacionesrecibosextendidas
|
|
Public ReadOnly Property EsDescobro
|
|
Get
|
|
Return Me.DescripcionTipoLiquidacion = "DESCOBRO"
|
|
End Get
|
|
End Property
|
|
|
|
Public ReadOnly Property LiquidoCia As Double
|
|
Get
|
|
Return Math.Round(Me.TotalRecibo.Value - Me.TotalComision.Value, 2, MidpointRounding.AwayFromZero)
|
|
End Get
|
|
End Property
|
|
|
|
Public ReadOnly Property LiquidacionTipo As String
|
|
Get
|
|
Return Me.idLiquidacionCia.ToString & " " & Me.DescripcionTipoLiquidacion
|
|
End Get
|
|
End Property
|
|
|
|
End Class
|