Skip to content
New issue

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

606a1_held_order_public_report Summary table values not displayed when convert to PDF #7

Closed
LaiFaiLee opened this issue Jan 8, 2021 · 3 comments

Comments

@LaiFaiLee
Copy link

Hello,

After some initial testing with the new XML schema published on 12/19/2020, we are finding that the Summary section is not properly populating – it is populating with blanks(--) on the 606a1_held_order_public_report. We expect these fields to be populated with numeric values.

This is the filename in question:

In the oh-20201219 folder- File Name Rule606ReportGenerator.js
Line Number: 813

Current SEC Code published on 12/19/2020:
function getPublicRoutingBody(section, monthVal, year) { // a1
var empty = true;
for (var i=0;i<a1SummaryTableTags[i];i++) {
if (NS != getElementValueByMonth(a1SummaryTableTags[i],section, monthVal, year)) {
empty = false;
break;
}
}

Tweak by our development team : This minor tweak on Line 813 appears to resolve the display issue.
function getPublicRoutingBody(section, monthVal, year) { // a1
var empty = true;
for (var i=0;i<a1SummaryTableTags.length;i++) {
if (NS != getElementValueByMonth(a1SummaryTableTags[i],section, monthVal, year)) {
empty = false;
break;
}
}
Thank you

@sec-gov sec-gov closed this as completed Jan 9, 2021
@sec-gov
Copy link
Owner

sec-gov commented Jan 9, 2021 via email

@LaiFaiLee
Copy link
Author

LaiFaiLee commented Jan 11, 2021 via email

@sec-gov
Copy link
Owner

sec-gov commented Jan 11, 2021 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants