Hi all, in order to “help” users and prevent for them to create a new debit memo instead of a new invoice, I´ve added an epiButton and want to use it to add a new Invoice. I have this code…
private void NuevoDetalleGastos_Click(object sender, System.EventArgs args)
{
// ** Place Event Handling Code Here **
//nuevodetalle.Focus();
Boolean nuevogas = oTrans.GetNewAPInvMsc();
}
because haven´t found the proper oTrans for the New Invoice
however if I ran the following code, a new group is generated.
private void NuevoDetalleGastos_Click(object sender, System.EventArgs args)
{
// ** Place Event Handling Code Here **
//nuevodetalle.Focus();
Boolean nuevogas = oTrans.GetNewAPInvGrp();
}
any ideas or suggestions?