function buildBillToVat(cviObj, custTaxId, custQstTaxId) {
nlapiLogExecution('DEBUG', 'params', 'cviObj.length = ' + cviObj.length + ' custTaxId = ' + custTaxId);
var returnValue = '';
if (cviObj) {
for (var i = 0; i < cviObj.length; i++) {
if (i === 0 && custTaxId) {
returnValue += '
' + cviObj[i].taxIdTerm + ' ID #: ' + custTaxId;
} else if (custQstTaxId) {
returnValue += '
' + cviObj[i].taxIdTerm + ' ID #: ' + custQstTaxId;
}
//var billToVat = custTaxId ? '
' + cviObj[cviIndex].taxIdTerm + ' ID #: ' + custTaxId : '';
}
}
nlapiLogExecution('DEBUG', 'buildBillToVat returnValue', returnValue);
return returnValue;
}