- Se cambió que en las promociones, se pueda editar directamente la cantidad de promos maximas, antes el campo era solo lectura.

This commit is contained in:
2024-02-26 12:29:29 -06:00
parent de3828ea8f
commit 966404f2ac
4 changed files with 8 additions and 3 deletions

View File

@@ -516,4 +516,9 @@ End Sub
' End If
' Return False
' ' Returning False signals the system to handle the key
'End Sub
'End Sub
Private Sub et_promoCant_TextChanged (Old As String, New As String)
If IsNumber(New) And New > maxCantPromos Then et_promoCant.Text = maxCantPromos
If IsNumber(New) Then cuentaProds
End Sub