Advertisement
Guest User

Untitled

a guest
Apr 20th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function isContractOpen(quote) {
  2.   if(!quote) { return false; }
  3.   if(quote.CANCEL) { return false; }
  4.   if(quote.CONTRACT && !quote.INVOICED && parseDate(quote.DEL_DATE) > (new Date())) { return true; }
  5.   return false;
  6. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement