Is it possible to reset the TypeDoc field in the ERP Spring Sales Editor after each recording of a new document?

-1

I want the TipoDoc field in Editor de Vendas of ERP Primavera to be empty after each write of a new document. I tried in the EditorVendas_DepoisDeGravar event the following line of code DocumentoVenda.TipoDoc = "" but to no avail. Is there any way to access the property of the object and change it?

    
asked by anonymous 12.06.2018 / 12:00

1 answer

1

Where you have DocumentoVenda.NumDoc = "" should be DocumentoVenda.TipoDoc = "" . The problem is not to change the object's property, but rather the interface. There are forms that allow and others do not.

    
12.06.2018 / 12:28