Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

View file
namepayment.pdf
height250
View file
nameusdp-workflow.pdf
height250
View file
nameusdp-logical-bizrules.pdf
height250
View file
nametest.company.csv
height250


Field Mapping for PDF



PDF Field Name

var

Leap var (use var column instead)

Leap Field ID

Leap Field Title

1

Month Ending

monthEnding

monthEndCalYear

F_MonthEndCalYear

Combined Month Ending and Calendar Year

2

Contractor Name

companyName

contractorName

F_ContractorName

General Contractor Name

3

Project Name

projectName

projectName

F_ProjectName

Project Name

4

Awarding Agency Name

awardingAgencyName

contractAwardAgency

F_ContractAwardAgency

F_ContractAwardAgency

5

Project Number

projectNumber

projectNumber

F_ProjectNumber

Project Number

6

Is Contractor an S/MBE? What is DAS Class?

smbe

vendorCertClass

F_VendorCertClass

Certification Class

7

Actual Project Mobilization Date

mobilizationDate

mobilizationDate

F_MobilizationDate

Actual Project Mobilization Date

8

Project Value

projectValue

projectValue

F_ProjectValue

Project Value

9

Percent Completed to Date

percentComplete

percentCompleteToDate

F_PercentCompleteToDate

Percent Completed To Date

10

Is this a FINAL Report?

finalReport

isFinalReport

F_IsFinalReport

Is This a Final Report?

11

Estimated Completion Date

completionDate

estCompletionDate

F_EstCompletionDate

Estimated Completion Date

12

Report Entry Date

reportEntryDate

reportEntryDate

F_ReportEntryDate

Report Entry Date

13

Printed Name and Printed Title of Person Signing

printedAuthorizedSignature

signerName

F_SignerName

Signer Name & Title

14

Month Ending

Same as above

monthEndCalYearBottom

F_MonthEndCalYear

Combined Month Ending and Calendar Year

15

Contractor Name

Same as above

contractorNameBottom

F_ContractorName

General Contractor Name

16

Project Name

Same as above

projectNameBottom

F_ProjectName

Project Name

17

Project Number

Same as above

projectNumberBottom

F_ProjectNumber

Project Number

18

S/MBE Contractor Textbox

TBD

smbeTableAsText

F_SmbeTableAsText

SMBE Table As Text

19

S/MBE Contractor Name

contractorName


F_SubtierCompany

Sub-Tier Company

20

DAS Class

dasClass


F_SubtierDasClass

DAS Class

21

Total Contract Amount

totalContractAmount


F_TotalContractAmount

Total Contract Amount

22

Total Payment this Month

totalPaymentThisMonth


F_TotalMonthlyPayment

Total Payment this Month

23

Total Payment to Date

totalPaymentToDate


F_TotalPaymentToDate

Total Payment to Date


app.getSharedData().FillPdfUrl = '';

app.getSharedData().FillPdf = function() {

var ajaxResult = '';
var beanJSON;
var obj = {};
obj.monthEndCalYear monthEnding = '';
obj.contractorName companyName = '';
obj.projectName = '';
obj.contractAwardAgency awardingAgencyName = '';
obj.projectNumber = '';
obj.vendorCertClass smbe = '';
obj.mobilizationDate = '';
obj.projectValue = '';
obj.percentCompleteToDate percentComplete = '';
obj.isFinalReport finalReport = '';
obj.estCompletionDate completionDate = '';
obj.reportEntryDate = '';
obj.signerName printedAuthorizedSignature = '';
obj.monthEndCalYearBottom monthEndingBottom = '';
obj.contractorNameBottom companyNameBottom = '';
obj.projectNameBottom = '';
obj.projectNumberBottom = '';
obj.smbeTableAsText = '';

if (!app.getSharedData().isEmpty(monthEndCalYearmonthEnding)) {
obj.monthEndCalYear monthEnding = monthEndCalYearmonthEnding;
}
if (!app.getSharedData().isEmpty(contractorNamecompanyName)) {
obj.contractorName companyName = contractorNamecompanyName;
}
if (!app.getSharedData().isEmpty(projectName)) {
obj.projectName = projectName;
}
if (!app.getSharedData().isEmpty(contractAwardAgencyawardingAgencyName)) {
obj.contractAwardAgency awardingAgencyName = contractAwardAgencyawardingAgencyName;
}
if (!app.getSharedData().isEmpty(projectNumber)) {
obj.projectNumber = projectNumber;
}
if (!app.getSharedData().isEmpty(vendorCertClasssmbe)) {
obj.vendorCertClass smbe = vendorCertClasssmbe;
}
if (!app.getSharedData().isEmpty(mobilizationDate)) {
obj.mobilizationDate = mobilizationDate;
}
if (!app.getSharedData().isEmpty(projectValue)) {
obj.projectValue = projectValue;
}
if (!app.getSharedData().isEmpty(percentCompleteToDatepercentComplete)) {
obj.percentCompleteToDate percentComplete = percentCompleteToDatepercentComplete;
}
if (!app.getSharedData().isEmpty(isFinalReportfinalReport)) {
obj.isFinalReport finalReport = isFinalReportfinalReport;
}
if (!app.getSharedData().isEmpty(estCompletionDatecompletionDate)) {
obj.estCompletionDate completionDate = estCompletionDatecompletionDate;
}
if (!app.getSharedData().isEmpty(reportEntryDate)) {
obj.reportEntryDate = reportEntryDate;
}
if (!app.getSharedData().isEmpty(signerNameprintedAuthorizedSignature)) {
obj.signerName printedAuthorizedSignature = signerNameprintedAuthorizedSignature;
}
if (!app.getSharedData().isEmpty(monthEndCalYearBottommonthEndingBottom)) {
obj.monthEndCalYearBottom monthEndingBottom = monthEndCalYearBottommonthEndingBottom;
}
if (!app.getSharedData().isEmpty(contractorNameBottomcompanyNameBottom)) {
obj.contractorNameBottom companyNameBottom = contractorNameBottomcompanyNameBottom;
}
if (!app.getSharedData().isEmpty(projectNameBottom)) {
obj.projectNameBottom = projectNameBottom;
}
if (!app.getSharedData().isEmpty(projectNumberBottom)) {
obj.projectNumberBottom = projectNumberBottom;
}
if (!app.getSharedData().isEmpty(smbeTableAsText)) {
obj.smbeTableAsText = smbeTableAsText;
}

...

var netid = BO.F_NetIDTest.getValue();
var firstName = BO.F_FirstNameTest.getValue();
var lastName = BO.F_lastnametest.getValue();
var monthEndCalYear monthEnding = BO.F_MonthEndCalYearmonthEndCalYear.getValue();
var contractorName companyName = BO.F_ContractorNamecontractorName.getValue();
var projectName = BO.F_ProjectName.getValue();
var contractAwardAgency awardingAgencyName = BO.F_ContractAwardAgencycontractAwardAgency.getValue();
var projectNumber = BO.F_ProjectNumber.getValue();
var vendorCertClass smbe = BO.F_VendorCertClassvendorCertClass.getValue();
var mobilizationDate = BO.F_MobilizationDate.getValue();
var projectValue = BO.F_ProjectValue.getValue();
var percentCompleteToDate percentComplete = BO.F_PercentCompleteToDatepercentCompleteToDate.getValue();
var isFinalReport finalReport = BO.F_IsFinalReportisFinalReport.getValue();
var estCompletionDate completionDate = BO.F_EstCompletionDateestCompletionDate.getValue();
var reportEntryDate = BO.F_ReportEntryDate.getValue();
var signerName printedAuthorizedSignature = BO.F_SignerNamesignerName.getValue();
var monthEndCalYearBottom monthEndingBottom = BO.F_MonthEndCalYearmonthEndCalYear.getValue();
var contractorNameBottom companyNameBottom = BO.F_ContractorNamecontractorName.getValue();
var projectNameBottom = BO.F_ProjectName.getValue();
var projectNumberBottom = BO.F_ProjectNumber.getValue();
var smbeTableAsText = BO.F_SmbeTableAsText.getValue();

...