We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Batch number is unique for daily. If I need to generate two file, how do I add batch number ?
thanks.
The text was updated successfully, but these errors were encountered:
Exposed BatchNumber property via Configuration, to set the custom value.
config.BatchNumber = "123456789";
Sorry, something went wrong.
Thanks, the BatchNumberGenerator is great ! But I only want to set the "start" number. how about this code?
_fileRunningStatObject.NewBatch(); uint batchNumber = _configuration.BatchNumber; if (_configuration.BatchNumberGenerator != null){ batchNumber = _configuration.BatchNumberGenerator(); }else if(batchNumber > _fileRunningStatObject.BatchCount){ _fileRunningStatObject.BatchCount = batchNumber; } _NACHABatchHeaderRecord.BatchNumber = _fileRunningStatObject.BatchCount;
No branches or pull requests
Batch number is unique for daily.
If I need to generate two file, how do I add batch number ?
thanks.
The text was updated successfully, but these errors were encountered: