SysOperation framework. Hide batch tab

In some cases, you may want to prevent users from running operations in batch mode within your application. To achieve this, you need to override the canGoBatch method in your controller class.

By default, the batch operation functionality is controlled by this method. If it returns true, the batch tab remains visible, and users can execute operations in batch mode. To hide the batch tab and disable batch operations, override the method as follows:

public boolean canGoBatch()
{
    return false;
}