Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var tmpArray = new Array("");
  2. var cTerms = 0;
  3. if (sessionScope.SelectedProduct != null & sessionScope.SelectedProduct != "") {
  4. tmpArray[cTerms++] = "(FIELD spareProduct = "" + sessionScope.SelectedProduct +
  5. "")";
  6. }
  7. if (sessionScope.Development != null & sessionScope.Development != "") {
  8. tmpArray[cTerms++] = "(FIELD spareStatus = "*" + sessionScope.Development +
  9. "*")";
  10. }
  11. qstring = tmpArray.join(" AND ").trim();
  12. return qstring
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement