{"info":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","description":"<html><head></head><body><h1 id=\"p3-rest-api\">P3 Rest API</h1>\n<p>Version 3 of the P3 API is a RESTful interface. Records are created, updated, listed and queried using a standard HTTP verbs sent to resource endpoints. P3 supports requests made in either JSON or XML. Responses are returned in JSON or XML, as requested.</p>\n<h2 id=\"using-postman\">Using Postman</h2>\n<p>You can interact with our api via postman. To do so, download the Postman app and click Run in Postman on the top right of this site. Then create an environment and set the environment variables</p>\n<ul>\n<li>url = p3expeditor.xyz</li>\n<li>api_key = the api key we provide for you</li>\n</ul>\n<h2 id=\"requests\">Requests</h2>\n<p>All requests should be made over HTTPS. P3's test api server is <a href=\"https://test.p3expeditor.info/api/v3\">https://p3expeditor.xyz/api/v3</a>. All test requests should be sent to that endpoint. Once you are ready to move your integration into production, contact us and we will provide a production url.</p>\n<h3 id=\"content-type-xml-and-json\">Content-Type: XML and JSON</h3>\n<p>All requests will expect JSON and return JSON unless you explicitly set the Content-Type header to <code>application\\xml</code></p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>Authentication is provided via two factors. First, the P3 api is protected by firewall rules that limit connections to known ips. Please provide a list of test and production ips that you will be requesting from.</p>\n<p>Second, each request must contain an api key in the Authorization header of the request. This key is unique to the enterprise you are querying for. This key should be protected and never exposed to client side requests.</p>\n<p>P3 will issue you two api keys, one for your test environment, and a separate one for your production environment.</p>\n<h2 id=\"resources-and-methods\">Resources and Methods</h2>\n<p>The following resources are currently available in V3 of the P3 Api.</p>\n<ul>\n<li>Customer</li>\n<li>Supplier</li>\n<li>Item</li>\n<li>Job</li>\n<li>Project</li>\n</ul>\n<p>Customers, Suppliers, and Items are simple, one dimensional objects. Jobs and Projects are more complex, with subrecords, attached objects and history fields. When retrieving a list of projects and jobs, you will get a simple flat object of header level data. To retrieve the full record, with attached line items, bids, quantities and versions, make a second request for the full single record.</p>\n<h3 id=\"http-methods\">HTTP Methods</h3>\n<p>P3 currently supports HEAD, GET, POST and PUT requests. The P3 API does not allow you to delete records at present. These methods allow the following requests -</p>\n<ul>\n<li>List all in a resource - <code>GET</code> : <code>https://{url}/api/v3/{resource}</code></li>\n<li>Get a single record - <code>GET</code> : <code>https://{url}/api/v3/{resource}/{index}</code></li>\n<li>Create a new record - <code>POST</code> : <code>https://{url}/api/v3/{resource}</code></li>\n<li>Update a record - <code>PUT</code> : <code>https://{url}/api/v3/{resource}/{index}</code></li>\n<li>Query a list by a single field - <code>GET</code> : <code>https://{url}/api/v3/{resource}/{field}/</code></li>\n</ul>\n<h3 id=\"paging\">Paging</h3>\n<p>For performance reasons, queries and lists will be limited to 1000 records. To retrieve the next page, pass the query string ?page=1. If your query returns less than 1000 pages you are on the last page.</p>\n<h3 id=\"required-fields\">Required fields</h3>\n<p>The P3 API does not have hard \"requirements\" for fields. P3 will attempt to default all fields to sane defaults because our customers have a wide range of requirements. All create and update requests will be sparse, so you can only submit the fields you want to add or update and we will default the rest of the fields.</p>\n<h3 id=\"time-and-dates\">Time and Dates</h3>\n<p>P3 expects dates to be submitted in GMT and will be returned as GMT.</p>\n<h3 id=\"error-handling\">Error Handling</h3>\n<p>If your query went as expected, P3 will return a 200 status code, and the body of the response will contain the JSON or XML that you requested.</p>\n<p>If an exception is encountered, the P3 api will not return a 200 message. We will either one of the following</p>\n<ul>\n<li>403 error (forbidden) - You don't have access either because your ip doesn't match, or because your api key is incorrect</li>\n<li>404 error (not found) - The record id you are looking for on a show or update can't be found</li>\n<li>405 error (method not available) - The method you called is impossible (PUT without id, DELETE etc)</li>\n<li>422 error (Unparseable Entity) - The json or xml you sent can't be parsed, or we threw an exception processing your request</li>\n</ul>\n<p>We will also return a JSON or XML formatted message with an error message that should tell you exactly what went wrong. If for any reason you get an error you don't understand or seems wrong, please let us know and send us the response body so we can investigate.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"P3 Rest API","slug":"p3-rest-api"}],"owner":"1805388","collectionId":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","publishedId":"RVfvEBfU","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-05-31T14:47:05.000Z"},"item":[{"name":"Customers","item":[{"name":"Get Customer LIst","event":[{"listen":"test","script":{"id":"763d64d9-1893-40fb-8466-d002b0e94209","exec":["pm.test(\"Content-Type is present1\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"7c22c339-376a-3001-ebe7-08624b1b93f7","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"url":"https://p3expeditor.com/api/v3/customer","description":"<p>Get a list of customers, sorted by customer index.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","customer"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c22c339-376a-3001-ebe7-08624b1b93f7"},{"name":"Get Customer","id":"63dcff3b-253c-5177-6190-a930169f1d84","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"json","value":"","type":"text","disabled":true}]},"url":"https://p3expeditor.com/api/v3/customer/5a83285f","description":"<p>Get a single customer by the 8 digit customer index</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","customer","5a83285f"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"63dcff3b-253c-5177-6190-a930169f1d84"},{"name":"Create Customer","id":"1cdff250-9656-ea42-6894-b875fdece805","request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"acctCode\": \"acctcode001\",\n\t\"company\": \"Company Name Company\",\n\t\"contact\": \"QA Accounting Code\",\n\t\"title\": \"Title\",\n\t\"address1\": \"Address 1\",\n\t\"address2\": \"Address 2\",\n\t\"city\": \"Baltimore\",\n\t\"state\": \"Maryland\",\n\t\"postCode\": \"21201\",\n\t\"country\": \"USA\",\n\t\"email\": \"api@p3software.com\",\n\t\"ccEmail\": \"api@p3software.com\",\n\t\"phone\": \"4105555555\",\n\t\"cell\": \"4105555555\",\n\t\"fax\": \"4105555555\",\n\t\"taxID\": \"taxid\",\n\t\"category\": \"categroy\",\n\t\"notes\": \"notes\",\n\t\"Active\": \"active\",\n\t\"salesRep\": \"sales\",\n\t\"DefMarkUp\": \"100\",\n\t\"PMTTerms\": \"terms\"\n}"},"url":"https://p3expeditor.com/api/v3/customer","description":"<p>Create a new customer by posting a sparse customer object.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","customer"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1cdff250-9656-ea42-6894-b875fdece805"},{"name":"Create Customer XML","id":"40c3a19e-91db-0abc-a25d-cb297ed08bde","request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/xml"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<customer>\n\t<company>Company Name</company>\n</customer>  "},"url":"https://p3expeditor.com/api/v3/customer","description":"<p>Create a customer with a sparse xml document.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","customer"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"40c3a19e-91db-0abc-a25d-cb297ed08bde"},{"name":"Update Customer Json","id":"37052fce-1350-90fb-1294-9941c53760c0","request":{"method":"PUT","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"custIndex\": \"5a7ce645\",\n\t\"acctCode\": \"acctcode001\",\n\t\"company\": \"Company Name Company\",\n\t\"contact\": \"QA Accounting Code\",\n\t\"title\": \"Title\",\n\t\"address1\": \"Address 1\",\n\t\"address2\": \"Address 2\",\n\t\"city\": \"Baltimore\",\n\t\"state\": \"Maryland\",\n\t\"postCode\": \"21201\",\n\t\"country\": \"USA\",\n\t\"email\": \"api@p3software.com\",\n\t\"ccEmail\": \"api@p3software.com\",\n\t\"phone\": \"4105555555\",\n\t\"cell\": \"4105555555\",\n\t\"fax\": \"4105555555\",\n\t\"taxID\": \"taxid\",\n\t\"category\": \"categroy\",\n\t\"notes\": \"notes\",\n\t\"Active\": \"active\",\n\t\"salesRep\": \"sales\",\n\t\"DefMarkUp\": \"100\",\n\t\"PMTTerms\": \"terms\"\n}"},"url":"https://p3expeditor.com/api/v3/customer/5a7ce645","description":"<p>Rest update customer</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","customer","5a7ce645"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"37052fce-1350-90fb-1294-9941c53760c0"},{"name":"Query Customer List","id":"a49d5eb8-490b-f62a-9b01-6da25db031f2","request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{     \n  \"acctCode\" : \"account\"\n}"},"url":"https://p3expeditor.com/api/v3/customer/query","description":"<p>Query the customer list by a posted object.  The object can contain any of the header level records and will return partial, case insensitive matches.  The filter is exclusive, so the result set will return only records that match all submitted fields.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","customer","query"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a49d5eb8-490b-f62a-9b01-6da25db031f2"},{"name":"Filter Customer List","id":"dcc7411a-965d-087d-3f60-268238599e07","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{     \n  \"company\" : \"Company\",\n  \"contact\": \"test\"\n}"},"url":"https://p3expeditor.com/api/v3/customer/query/email/api@p3software.com","description":"<p>Filter the customer list by a single field/value.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","customer","query","email","api@p3software.com"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"dcc7411a-965d-087d-3f60-268238599e07"},{"name":"Find or Create Customer","id":"ae9ec3b7-8b57-9a00-68f4-25c4983829ca","request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"acctCode\": \"account 5\",\n  \"company\": \"Company Name Company\",\n  \"contact\": \"QA Accounting Code\",\n  \"title\": \"Title\",\n  \"address1\": \"Address 1\",\n  \"address2\": \"Address 2\",\n  \"city\": \"Baltimore\",\n  \"state\": \"Maryland\",\n  \"postCode\": \"21201\",\n  \"country\": \"USA\",\n  \"email\": \"brad.mering+acctcod5@gmail.com\",\n  \"ccEmail\": \"brad.mering+acctcode2@gmail.com\",\n  \"phone\": \"4105555555\",\n  \"cell\": \"4105555555\",\n  \"fax\": \"4105555555\",\n  \"taxID\": \"taxid\",\n  \"category\": \"categroy\",\n  \"notes\": \"notes\",\n  \"Active\": \"active\",\n  \"salesRep\": \"sales\",\n  \"DefMarkUp\": \"100\",\n  \"PMTTerms\": \"terms\"\n}"},"url":"https://p3expeditor.com/api/v3/customer/findorcreate","description":"<p>This is a special customer method that allows you to post a customer object.  </p>\n<p>If it finds a matching record, it will return that record.  If it finds multiple matching records, it will return the first match.  If no match is found, a new record will be created.</p>\n<p>The search is an inclusive, first-match <em>Or</em> query, matching the custIndex, the acctCode and the email supplied.  It will return the first match that exactly matches any of the supplied values.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","customer","findorcreate"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae9ec3b7-8b57-9a00-68f4-25c4983829ca"},{"name":"Create or Update Customer","id":"7797d37c-acc1-4439-b456-f91b51eb4775","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"acctCode\": \"11\",\n    \"email\": \"tlr7@psu.edu\",\n    \"company\": \"The Pennsylvania State University\",\n    \"contact\": \"Theresa Roby\",\n    \"title\": \"Manager\",\n    \"address1\": \"117 Hostetter Building\",\n    \"address2\": \"\",\n    \"city\": \"University Park\",\n    \"state\": \"Pennsylvania\",\n    \"postCode\": \"16802\",\n    \"country\": \"United States\",\n    \"phone\": \"814-863-1980\",\n    \"fax\": \"814-863-6376\",\n    \"category\": \"WebCRD Customer\"\n}"},"url":"https://p3expeditor.com/api/v3/customer/createorupdate","description":"<p>This is a special customer method that allows you to send a customer record to update or create.  </p>\n<p>The query will attempt to match the most specific query element supplied.  </p>\n<ul>\n<li>If the custIndex is supplied, the api will find the matching index to update or create a record if no index is found</li>\n<li>If no index is supplied, the api will attempt to find a matching acctCode and will update the record if found or create a record if none can be found.</li>\n<li>If no acctCode is supplied the api will find a record by email address, and will update the record if an exact match is found or create a record if none can be found.</li>\n</ul>\n<p>If none of these values are suppplied, we will return a 405 code.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","customer","createorupdate"],"host":["p3expeditor","com"],"query":[],"variable":[]}},"response":[{"id":"6d1d39cd-0400-4fc5-82bf-4659d38869e0","name":"Create or Update Customer","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"acctCode\": \"account 5\",\n  \"company\": \"Company Name Company 1\",\n  \"contact\": \"QA Accounting Code\",\n  \"title\": \"Title\",\n  \"address1\": \"Address 1\",\n  \"address2\": \"Address 2\",\n  \"city\": \"Baltimore\",\n  \"state\": \"Maryland\",\n  \"postCode\": \"21201\",\n  \"country\": \"USA\",\n  \"email\": \"brad.mering+acctcod5@gmail.com\",\n  \"ccEmail\": \"brad.mering+acctcode2@gmail.com\",\n  \"phone\": \"4105555555\",\n  \"cell\": \"4105555555\",\n  \"fax\": \"4105555555\",\n  \"taxID\": \"taxid\",\n  \"category\": \"categroy\",\n  \"notes\": \"notes\",\n  \"Active\": \"active\",\n  \"salesRep\": \"sales\",\n  \"DefMarkUp\": \"100\",\n  \"PMTTerms\": \"terms\"\n}"},"url":"https://p3expeditor.com/api/v3/customer/createorupdate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"544","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Wed, 30 May 2018 17:46:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Keep-Alive","value":"timeout=5, max=100","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"Apache","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Authorization","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"sameorigin","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none","name":"X-Permitted-Cross-Domain-Policies","description":"Custom header"},{"key":"X-Powered-By","value":"PHP/7.1.15","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"},{"key":"X-XSS-Protection","value":"1; mode=block","name":"X-XSS-Protection","description":"Cross-site scripting (XSS) filter"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"test.p3expeditor.info","path":"/","secure":false,"value":"bdf4789c734f87843adba24c9a03c50c","key":"PHPSESSID"}],"responseTime":null,"body":"{\"custIndex\":\"5a835502\",\"lastMod\":\"1518556418\",\"company\":\"Company Name Company 1\",\"contact\":\"QA Accounting Code\",\"title\":\"Title\",\"address1\":\"Address 1\",\"address2\":\"Address 2\",\"city\":\"Baltimore\",\"state\":\"Maryland\",\"postCode\":\"21201\",\"country\":\"USA\",\"email\":\"brad.mering+acctcod5@gmail.com\",\"ccEmail\":\"brad.mering+acctcode2@gmail.com\",\"phone\":\"4105555555\",\"cell\":\"4105555555\",\"fax\":\"4105555555\",\"taxID\":\"taxid\",\"category\":\"categroy\",\"notes\":\"notes\",\"acctCode\":\"account 5\",\"Active\":\"active\",\"salesRep\":\"sales\",\"DefMarkUp\":\"100\",\"PMTTerms\":\"terms\"}"}],"_postman_id":"7797d37c-acc1-4439-b456-f91b51eb4775"}],"id":"d124f853-ed07-c7eb-c854-fde89f976c62","event":[{"listen":"prerequest","script":{"id":"d019f32b-bfc4-475d-931a-ac57ec311da1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1bd4587b-a1c2-485d-89a4-93097bfe79f1","type":"text/javascript","exec":[""]}}],"_postman_id":"d124f853-ed07-c7eb-c854-fde89f976c62","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}}},{"name":"Suppliers","item":[{"name":"Get Supplier List","id":"6abbf5ff-7fd7-d49c-3c50-0ade3c73bd52","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{     \n  \"company\" : \"Company\"\n}"},"url":"https://p3expeditor.com/api/v3/supplier","description":"<p>Get a supplier list</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","supplier"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6abbf5ff-7fd7-d49c-3c50-0ade3c73bd52"},{"name":"Get Supplier","id":"2d5b10c8-87e1-2776-4392-9ccb883d1b6e","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"json","value":"","type":"text","disabled":true}]},"url":"https://p3expeditor.com/api/v3/supplier/623b8f5f","description":"<p>Get a supplier by 8 digit supIndex</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","supplier","623b8f5f"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d5b10c8-87e1-2776-4392-9ccb883d1b6e"},{"name":"Create Supplier","id":"4476420f-a864-f42e-5e25-9631b85117e4","request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"company\": \"Company Name Company\",\n\t\"contact\": \"Test Contact\",\n\t\"title\": \"Title\",\n\t\"address1\": \"Address 1\",\n\t\"address2\": \"Address 2\",\n\t\"city\": \"Boston\",\n\t\"state\": \"Mass\",\n\t\"postCode\": \"21201\",\n\t\"country\": \"USA\",\n\t\"email\": \"api@p3software.com\",\n\t\"ccEmail\": \"api@p3software.com\",\n\t\"phone\": \"4105555555\",\n\t\"cell\": \"4105555555\",\n\t\"fax\": \"4105555555\",\n\t\"taxID\": \"taxid\",\n\t\"category\": \"categroy\",\n\t\"notes\": \"notes\",\n\t\"acctCode\": \"account\",\n    \"p3NetID\": \"id\",\n    \"website\": \"google.com\",\n    \"pmtTerms\": \"Net 30\",\n    \"Active\": \"1\",\n    \"equipment\": \"Cool Printers 2\"\n}"},"url":"https://p3expeditor.com/api/v3/supplier","description":"<p>Create a supplier with a json record</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","supplier"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4476420f-a864-f42e-5e25-9631b85117e4"},{"name":"Update Supplier Json","id":"800fba42-326f-008e-fa2f-551077d22e66","request":{"method":"PUT","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"supIndex\": \"5a2c2261\",\n\t\"company\": \"Company Name Company\",\n\t\"contact\": \"Test Contact\",\n\t\"title\": \"Title\",\n\t\"address1\": \"Address 1\",\n\t\"address2\": \"Address 2\",\n\t\"city\": \"Boston\",\n\t\"state\": \"Mass\",\n\t\"postCode\": \"21201\",\n\t\"country\": \"USA\",\n\t\"email\": \"api@p3software.com\",\n\t\"ccEmail\": \"api@p3software.com\",\n\t\"phone\": \"4105555555\",\n\t\"cell\": \"4105555555\",\n\t\"fax\": \"4105555555\",\n\t\"taxID\": \"taxid\",\n\t\"category\": \"categroy\",\n\t\"notes\": \"notes\",\n\t\"acctCode\": \"account\",\n    \"p3NetID\": \"id\",\n    \"website\": \"google.com\",\n    \"pmtTerms\": \"Net 30\",\n    \"Active\": \"1\",\n    \"equipment\": \"Cool Printers 2\"\n}"},"url":"https://p3expeditor.com/api/v3/supplier/5a2c226231","description":"<p>Update a supplier with a json record</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","supplier","5a2c226231"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"800fba42-326f-008e-fa2f-551077d22e66"},{"name":"Query Supplier List","id":"f8a500d9-83db-3c7e-f090-39f09f6f9e80","request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{     \n  \"email\" : \"api@p3software.com\"\n}"},"url":"https://p3expeditor.com/api/v3/supplier/query","description":"<p>Query the supplier list by a posted object.  The object can contain any of the header level records and will return partial, case insensitive matches.  The filter is exclusive, so the result set will return only records that match all submitted fields.</p>\n<h4 id=\"matching-rules\">Matching rules</h4>\n<p>Strings will be matched partially as case insentive matches.\nDates can either be matched exactly as YYYYDDMMHHMMSS or you can supply a date range in the following form </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"lastMod\": {\n        \"start\": \"YYYYMMDDHHMMSS\",\n        \"end\": \"YYYYMMDDHHMMSS\",\n    }\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","supplier","query"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f8a500d9-83db-3c7e-f090-39f09f6f9e80"},{"name":"Filter Supplier List","id":"1043eabd-6eea-b62a-8b3c-b1d62de6e443","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{     \n  \"company\" : \"Company\",\n  \"contact\": \"test\"\n}"},"url":"https://p3expeditor.com/api/v3/supplier/query/email/api@p3software.com","description":"<p>Filter the supplier list by single key/value pair.  The key can contain can be any supplier field and will return partial, case insensitive matches.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","supplier","query","email","api@p3software.com"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"1043eabd-6eea-b62a-8b3c-b1d62de6e443"}],"id":"c4c48bb6-566f-fe69-0f99-64ddffd65352","_postman_id":"c4c48bb6-566f-fe69-0f99-64ddffd65352","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}}},{"name":"Items","item":[{"name":"Get Item List","id":"4f55d74e-36a0-df9a-d261-079a7d250d48","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{     \n  \"company\" : \"Company\"\n}"},"url":"https://p3expeditor.com/api/v3/item","description":"<p>Get a list of items</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","item"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f55d74e-36a0-df9a-d261-079a7d250d48"},{"name":"Get Item","id":"e87594cd-8f17-c5c9-49b6-f939fe4dae6f","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"url":"https://p3expeditor.com/api/v3/item/473c6bfa","description":"<p>Get a single item by 8 digit itemIndex</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","item","473c6bfa"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e87594cd-8f17-c5c9-49b6-f939fe4dae6f"},{"name":"Create Item","id":"faf8b0a5-7212-47dc-bb31-952573730a0e","request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"active\": \"Y\",\n    \"itemPart1\": \"Test Item\",\n    \"itemPart2\": \"Test Item 2\",\n    \"itemPart3\": \"Test Item 3\",\n    \"itemPart4\": \"Test Item 3\",\n    \"description\": \"Sample Item Description\"\n}"},"url":"https://p3expeditor.com/api/v3/item","description":"<p>Create an item from a json object</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","item"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"faf8b0a5-7212-47dc-bb31-952573730a0e"},{"name":"Update Item Json","id":"8e02cce1-752c-90a7-fec9-bc6ef8496b0b","request":{"method":"PUT","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"itemIndex\": \"5a8cb48b\",\n    \"active\": \"Y\",\n    \"itemPart1\": \"Test Item 1 a\",\n    \"itemPart2\": \"Test Item 2\",\n    \"itemPart3\": \"Test Item 3\",\n    \"itemPart4\": \"Test Item 3\",\n    \"description\": \"Sample Item Description\"\n}"},"url":"https://p3expeditor.comapi/v3/item/5a8cb48b","description":"<p>Update an item by passing a json document and an 8 digit item index.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["v3","item","5a8cb48b"],"host":["p3expeditor.comapi"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e02cce1-752c-90a7-fec9-bc6ef8496b0b"},{"name":"Query Item List","id":"163d608e-db48-3956-1838-c5bbb7ecf149","request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{     \n  \"itemPart1\" : \"test\"\n}"},"url":"https://p3expeditor.com/api/v3/item/query","description":"<p>Query the item list by a posted object.  The object can contain any of the header level records and will return partial, case insensitive matches.  The filter is exclusive, so the result set will return only records that match all submitted fields.</p>\n<h4 id=\"matching-rules\">Matching rules</h4>\n<p>Strings will be matched partially as case insentive matches.\nDates can either be matched exactly as YYYYDDMMHHMMSS or you can supply a date range in the following form </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"lastMod\": {\n        \"start\": \"YYYYMMDDHHMMSS\",\n        \"end\": \"YYYYMMDDHHMMSS\",\n    }\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","item","query"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"163d608e-db48-3956-1838-c5bbb7ecf149"},{"name":"Filter Item List","id":"0ef6266a-03ae-0b19-007a-56b380ca0fdb","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{     \n  \"company\" : \"Company\",\n  \"contact\": \"test\"\n}"},"url":"https://p3expeditor.com/api/v3/item/query/itemPart1/test","description":"<p>Filter the item list by single key/value pair. The key can contain can be any item field and will return partial, case insensitive matches.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","item","query","itemPart1","test"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ef6266a-03ae-0b19-007a-56b380ca0fdb"}],"id":"e41858d0-1237-48fb-b215-31c63bd8a6b2","_postman_id":"e41858d0-1237-48fb-b215-31c63bd8a6b2","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}}},{"name":"Jobs","item":[{"name":"Get Job List","id":"089a3340-271a-fb2a-ae11-21b0071b5b21","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{     \n  \"company\" : \"Company\"\n}"},"url":"https://p3expeditor.com/api/v3/job","description":"<p>Gets a list of Job records. <br />\nOnly a limited set of top level Job data elements are available in the Job List. <br />\nFor more detailed Job data request individual Job records using the Get Job API.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","job"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[{"id":"9db65349-6a98-4b4a-92f5-e7067f836934","name":"Get Job List","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"https://p3expeditor.com/api/v3/job"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 15 Mar 2024 18:53:07 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"close"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"300"},{"key":"X-RateLimit-Remaining","value":"299"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"jobIndex\": \"\",\n        \"lastMod\": \"0\",\n        \"jobNumber\": \"\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"0\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"49f12316.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20090423222526\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"49f1258c.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20090423223556\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"49f12866.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20090423224806\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"49f128ff.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20090423225039\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"49f12daf.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20090423231039\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"49f20bec.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0019\",\n        \"jobName\": \"Alpha Test 3\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"ALPHA 1\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20090428120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20090726120000\",\n        \"createdDate\": \"20090424145852\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"49f4e655.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0020\",\n        \"jobName\": \"Alpha Test 2\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20090427120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090428120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090429120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20090726120000\",\n        \"createdDate\": \"20090426185517\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"49f6f7b9.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0021\",\n        \"jobName\": \"Alpha Test 4 - Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"ALPHA 1\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20090429120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090430120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090506120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20090726120000\",\n        \"createdDate\": \"20090428083401\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"49f6fd8c.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0022\",\n        \"jobName\": \"Alpha Test 5\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Alpha 2\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20090429120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090430120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090512120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20090726120000\",\n        \"createdDate\": \"20090428085852\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"49f8a56c.PRJ\",\n        \"lastMod\": \"1635986588\",\n        \"jobNumber\": \"0030\",\n        \"jobName\": \"Grand Brochure Mailer\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"Project_49f8a667.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"caleb.tower@p3expeditor.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090430120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090504120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090529120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090430120000\",\n        \"proofPlannedDate\": \"20090504120000\",\n        \"deliverPlannedDate\": \"20090529120000\",\n        \"orderDate\": \"20091014120000\",\n        \"compDate\": \"20091014120000\",\n        \"createdDate\": \"20090429150724\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"49f8a56c.PRJ5ec3e1e2\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"204.0\",\n        \"ordNum\": \"0030\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"5\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"Other\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a004237.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0032\",\n        \"jobName\": \"Alpha Test 8\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"ALPHA 1\",\n        \"projIndex\": \"Project_4a0246bc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090507120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090511120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090514120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20090726120000\",\n        \"createdDate\": \"20090505094215\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a0b2841.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0036\",\n        \"jobName\": \"OPG Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"Project_4a0b2f4b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20090513235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090514120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090514000000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090514000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090514120000\",\n        \"proofPlannedDate\": \"20090514120000\",\n        \"deliverPlannedDate\": \"20090514120000\",\n        \"orderDate\": \"20090513120000\",\n        \"compDate\": \"20090726120000\",\n        \"createdDate\": \"20090513160625\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a0b2841.PRJ4a0b2a63\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"323523\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"0.0\",\n        \"savingsAmt\": \"50.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a12d085.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0037\",\n        \"jobName\": \"Print Oasis 09\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Conference\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090517120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090519120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090521120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090517120000\",\n        \"proofPlannedDate\": \"20090519120000\",\n        \"deliverPlannedDate\": \"20090521120000\",\n        \"orderDate\": \"20090519120000\",\n        \"compDate\": \"20090726120000\",\n        \"createdDate\": \"20090519113013\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a12d085.PRJ4a12d4db\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2025.0\",\n        \"ordNum\": \"0037\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"0.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a12dc2d.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0038\",\n        \"jobName\": \"Mailing\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Conference\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20090527120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20090726120000\",\n        \"createdDate\": \"20090519121957\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a13101b.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0039\",\n        \"jobName\": \"Mailing 2\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090520120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20090726120000\",\n        \"createdDate\": \"20090519160131\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a13113b.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0040\",\n        \"jobName\": \"Mailing 3\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20090520120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20090520120000\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20090726120000\",\n        \"createdDate\": \"20090519160619\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a13113b.PRJ4a1356b3\",\n        \"ordQuant\": \"1\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"0040\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"0.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"0\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a141baf.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0041\",\n        \"jobName\": \"Aerios brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"ALPHA 1\",\n        \"projIndex\": \"Project_4a1426f3.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090527120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090526120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090527120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090527120000\",\n        \"proofPlannedDate\": \"20090526120000\",\n        \"deliverPlannedDate\": \"20090527120000\",\n        \"orderDate\": \"20090520120000\",\n        \"compDate\": \"20090726120000\",\n        \"createdDate\": \"20090520110311\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a141baf.PRJ4a1423af\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"85655\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"3031.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a36481d.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0045\",\n        \"jobName\": \"Acme brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"Project_4a36753e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090616120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090617120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090622120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090616120000\",\n        \"proofPlannedDate\": \"20090617120000\",\n        \"deliverPlannedDate\": \"20090622120000\",\n        \"orderDate\": \"20090615120000\",\n        \"compDate\": \"20090726120000\",\n        \"createdDate\": \"20090615090949\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a36481d.PRJ4a364a2d\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"2341241\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"3120.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a38eb9f.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0046\",\n        \"jobName\": \"Bucknell Brochure\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Conference\",\n        \"projIndex\": \"Project_4a38f137.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090618120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090618120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090623120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090618120000\",\n        \"proofPlannedDate\": \"20090618120000\",\n        \"deliverPlannedDate\": \"20090623120000\",\n        \"orderDate\": \"20090617120000\",\n        \"compDate\": \"20090628120000\",\n        \"createdDate\": \"20090617091159\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a38eb9f.PRJ4a38ee65\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1900.0\",\n        \"ordNum\": \"0046\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2275.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a38f4aa.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0047\",\n        \"jobName\": \"Bucknell Brochure 2\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090909120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090914120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090922120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090909120000\",\n        \"proofPlannedDate\": \"20090914120000\",\n        \"deliverPlannedDate\": \"20090922120000\",\n        \"orderDate\": \"20090914120000\",\n        \"compDate\": \"20090925120000\",\n        \"createdDate\": \"20090617095034\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"5\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a38f4aa.PRJ4aaea0a8\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"4476.0\",\n        \"ordNum\": \"0047\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"Quantity Reduction\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a4053d7.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0050\",\n        \"jobName\": \"Alpha Test 62209\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Conference\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090624120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090625120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090629120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090624120000\",\n        \"proofPlannedDate\": \"20090625120000\",\n        \"deliverPlannedDate\": \"20090629120000\",\n        \"orderDate\": \"20091014120000\",\n        \"compDate\": \"20090623120000\",\n        \"createdDate\": \"20090623000231\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a4053d7.PRJ4a40562b\",\n        \"ordQuant\": \"600\",\n        \"ordPrice\": \"615.0\",\n        \"ordNum\": \"0050\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a411c9d.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0052\",\n        \"jobName\": \"Landry Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Landry Brochure\",\n        \"projIndex\": \"Project_4aab25a0.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20090623235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090624120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090625120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090629120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090624120000\",\n        \"proofPlannedDate\": \"20090625120000\",\n        \"deliverPlannedDate\": \"20090629120000\",\n        \"orderDate\": \"20090629120000\",\n        \"compDate\": \"20090915120000\",\n        \"createdDate\": \"20090623141909\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a411c9d.PRJ4a411fe8\",\n        \"ordQuant\": \"35000\",\n        \"ordPrice\": \"5215.0\",\n        \"ordNum\": \"0052\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"210.0\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a47f57c.PRJ\",\n        \"lastMod\": \"1557218839\",\n        \"jobNumber\": \"0058\",\n        \"jobName\": \"Wink Test Job\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20090629120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090630120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090709120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20090726120000\",\n        \"createdDate\": \"20090628185804\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"0\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a5224b8.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0059\",\n        \"jobName\": \"Seydler Brochure\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Seydler\",\n        \"projIndex\": \"Project_4a522aa1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090708120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090710120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090715120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090708120000\",\n        \"proofPlannedDate\": \"20090710120000\",\n        \"deliverPlannedDate\": \"20090715120000\",\n        \"orderDate\": \"20090706120000\",\n        \"compDate\": \"20090706120000\",\n        \"createdDate\": \"20090706122216\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a5224b8.PRJ4a522718\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2100.0\",\n        \"ordNum\": \"2323523\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2800.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a522de1.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0060\",\n        \"jobName\": \"Seydler Brochure V2\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Seydler\",\n        \"projIndex\": \"Project_4a522aa1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090709120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090714120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090720120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090709120000\",\n        \"proofPlannedDate\": \"20090714120000\",\n        \"deliverPlannedDate\": \"20090720120000\",\n        \"orderDate\": \"20090914120000\",\n        \"compDate\": \"20090925120000\",\n        \"createdDate\": \"20090706130121\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"4\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a522de1.PRJ4aaea320\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"9195.0\",\n        \"ordNum\": \"0060\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a54adb4.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0061\",\n        \"jobName\": \"Logical Brochure\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"\",\n        \"projIndex\": \"Project_4a54b1c2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090709120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090714120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090717120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090709120000\",\n        \"proofPlannedDate\": \"20090714120000\",\n        \"deliverPlannedDate\": \"20090717120000\",\n        \"orderDate\": \"20090708120000\",\n        \"compDate\": \"20090708120000\",\n        \"createdDate\": \"20090708103116\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a54adb4.PRJ4a54afe6\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0061\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2195.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a54b5e6.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0062\",\n        \"jobName\": \"Logical Brochure -2\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Seydler\",\n        \"projIndex\": \"Project_4a522aa1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090721120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090724120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090731120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090721120000\",\n        \"proofPlannedDate\": \"20090724120000\",\n        \"deliverPlannedDate\": \"20090731120000\",\n        \"orderDate\": \"20090914120000\",\n        \"compDate\": \"20090708120000\",\n        \"createdDate\": \"20090708110614\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a54b5e6.PRJ4a54b5ea\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"604.0\",\n        \"ordNum\": \"0062\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a5554a9.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0063\",\n        \"jobName\": \"Canterbury Brochure\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"\",\n        \"projIndex\": \"Project_4a555863.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090709120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090713120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090715120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090709120000\",\n        \"proofPlannedDate\": \"20090713120000\",\n        \"deliverPlannedDate\": \"20090715120000\",\n        \"orderDate\": \"20090708120000\",\n        \"compDate\": \"20090708120000\",\n        \"createdDate\": \"20090708222337\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a5554a9.PRJ4a55568f\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"2342342342\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2595.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a5a8e63.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0065\",\n        \"jobName\": \"BETA test 7129-1\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Beta-1\",\n        \"projIndex\": \"Project_4a5a9406.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090713120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090715120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090721120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20090712213115\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a5a94c9.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0066\",\n        \"jobName\": \"BETA Test 7129-2\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Beta-1\",\n        \"projIndex\": \"Project_4a5a9406.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090715120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090717120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090724120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20090712215833\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a5ca000.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0067\",\n        \"jobName\": \"DC Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"Project_4a5ca3a0.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090716120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090717120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090724120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090720120000\",\n        \"proofPlannedDate\": \"20090721120000\",\n        \"deliverPlannedDate\": \"20090721120000\",\n        \"orderDate\": \"20090714120000\",\n        \"compDate\": \"20090714120000\",\n        \"createdDate\": \"20090714111056\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a5ca000.PRJ4a5ca1f1\",\n        \"ordQuant\": \"25000\",\n        \"ordPrice\": \"23250.0\",\n        \"ordNum\": \"0067\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"27938.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a5ca7ff.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0068\",\n        \"jobName\": \"Landry Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090624120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090625120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090629120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090624120000\",\n        \"proofPlannedDate\": \"20090625120000\",\n        \"deliverPlannedDate\": \"20090629120000\",\n        \"orderDate\": \"20090909120000\",\n        \"compDate\": \"20090909120000\",\n        \"createdDate\": \"20090714114503\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"4\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a5ca7ff.PRJ4a5ca800\",\n        \"ordQuant\": \"35000\",\n        \"ordPrice\": \"3430.0\",\n        \"ordNum\": \"0068\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"Quantity Reduction\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a5df3d8.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0069\",\n        \"jobName\": \"Mammen Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"Project_4a5df929.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090716120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090717120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090723120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090716120000\",\n        \"proofPlannedDate\": \"20090717120000\",\n        \"deliverPlannedDate\": \"20090723120000\",\n        \"orderDate\": \"20090715120000\",\n        \"compDate\": \"20090715120000\",\n        \"createdDate\": \"20090715112056\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a5df3d8.PRJ4a5df5fd\",\n        \"ordQuant\": \"25000\",\n        \"ordPrice\": \"20000.0\",\n        \"ordNum\": \"0069\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"20890.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"5\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a5dfdab.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0070\",\n        \"jobName\": \"DC Brochure\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Seydler\",\n        \"projIndex\": \"Project_4a522aa1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090729120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090730120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090729120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090729120000\",\n        \"proofPlannedDate\": \"20090730120000\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20090728120000\",\n        \"compDate\": \"20090714120000\",\n        \"createdDate\": \"20090715120251\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a5dfdab.PRJ4a6f4c00\",\n        \"ordQuant\": \"25000\",\n        \"ordPrice\": \"20.0\",\n        \"ordNum\": \"0070\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"210.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a63ce74.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0071\",\n        \"jobName\": \"Website Brochure\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Beta-1\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Customer Owned Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090721120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090722120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090719120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20091021120000\",\n        \"createdDate\": \"20090719215500\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"0\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a6be027.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0073\",\n        \"jobName\": \"Provider Directory\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"ALPHA 1\",\n        \"projIndex\": \"Project_4a1426f3.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20090726235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090728120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090729120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090807120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090728120000\",\n        \"proofPlannedDate\": \"20090729120000\",\n        \"deliverPlannedDate\": \"20090807120000\",\n        \"orderDate\": \"20170222152549\",\n        \"compDate\": \"20090729120000\",\n        \"createdDate\": \"20090726004839\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a6be027.PRJ58adf132\",\n        \"ordQuant\": \"75000\",\n        \"ordPrice\": \"3000.0\",\n        \"ordNum\": \"23456\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170222152549\",\n        \"orderSentDate\": \"20170222152629\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a76d797.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0074\",\n        \"jobName\": \"Summer at Bucknell\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Enrollment\",\n        \"projIndex\": \"Project_4a76e7cf.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090805120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090806120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090814120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090805120000\",\n        \"proofPlannedDate\": \"20090806120000\",\n        \"deliverPlannedDate\": \"20090814120000\",\n        \"orderDate\": \"20090803120000\",\n        \"compDate\": \"20090803120000\",\n        \"createdDate\": \"20090803082703\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a76d797.PRJ4a76e41e\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"0074\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2200.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a76ed5b.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0075\",\n        \"jobName\": \"Summer at Bucknell 09\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Spring Enrollment\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"6\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20090803235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090812120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090819120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090827120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20090803120000\",\n        \"compDate\": \"20090803120000\",\n        \"createdDate\": \"20090803095955\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a788027.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0076\",\n        \"jobName\": \"Kluwer Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"ALPHA 1\",\n        \"projIndex\": \"Project_4a0246bc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090805120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090806120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090812120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090805120000\",\n        \"proofPlannedDate\": \"20090806120000\",\n        \"deliverPlannedDate\": \"20090812120000\",\n        \"orderDate\": \"20090804120000\",\n        \"compDate\": \"20090804120000\",\n        \"createdDate\": \"20090804143831\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a788027.PRJ4a788225\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0076\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2550.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a7b1574.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0078\",\n        \"jobName\": \"LA Times Brochure\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090810120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090812120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090814120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090810120000\",\n        \"proofPlannedDate\": \"20090812120000\",\n        \"deliverPlannedDate\": \"20090814120000\",\n        \"orderDate\": \"20090806120000\",\n        \"compDate\": \"20090806120000\",\n        \"createdDate\": \"20090806134004\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a7b1574.PRJ4a7b17c9\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"3200.0\",\n        \"ordNum\": \"23234123\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"3810.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"Size Change\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a89daa7.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0079\",\n        \"jobName\": \"Edge Mailer\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"ALPHA 1\",\n        \"projIndex\": \"Project_4a1426f3.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090825120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20090817183311\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a8ac3c1.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0080\",\n        \"jobName\": \"Brown Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"ALPHA 1\",\n        \"projIndex\": \"Project_4a1426f3.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090819120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090820120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090827120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090819120000\",\n        \"proofPlannedDate\": \"20090820120000\",\n        \"deliverPlannedDate\": \"20090827120000\",\n        \"orderDate\": \"20090818120000\",\n        \"compDate\": \"20090818120000\",\n        \"createdDate\": \"20090818110745\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a8ac3c1.PRJ4a8ac595\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1875.0\",\n        \"ordNum\": \"34232343\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2400.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a8b04b2.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0081\",\n        \"jobName\": \"Dish Network Brochure - Rev 2\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"ALPHA 1\",\n        \"projIndex\": \"Project_4a1426f3.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090826120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090820120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090824120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090826120000\",\n        \"proofPlannedDate\": \"20090820120000\",\n        \"deliverPlannedDate\": \"20090824120000\",\n        \"orderDate\": \"20090818120000\",\n        \"compDate\": \"20090818120000\",\n        \"createdDate\": \"20090818154450\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a8b04b2.PRJ4a8b0914\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0081\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2450.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a92e8fe.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0082\",\n        \"jobName\": \"Provider Directory -A\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Conference\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090728120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090729120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090807120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090728120000\",\n        \"proofPlannedDate\": \"20090729120000\",\n        \"deliverPlannedDate\": \"20090807120000\",\n        \"orderDate\": \"20091014120000\",\n        \"compDate\": \"20090729120000\",\n        \"createdDate\": \"20090824152446\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"5\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a92e8fe.PRJ4a92ff14\",\n        \"ordQuant\": \"100000\",\n        \"ordPrice\": \"7200.0\",\n        \"ordNum\": \"0082\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a969e91.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0083\",\n        \"jobName\": \"Knight Frank Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Knight Frank Brochure\",\n        \"projIndex\": \"Project_4aab24cf.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090828120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090830120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090831120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090828120000\",\n        \"proofPlannedDate\": \"20090830120000\",\n        \"deliverPlannedDate\": \"20090831120000\",\n        \"orderDate\": \"20090912120000\",\n        \"compDate\": \"20090827120000\",\n        \"createdDate\": \"20090827105617\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a969e91.PRJ4a96a1e2\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"234234234\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2600.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4a96a865.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0084\",\n        \"jobName\": \"Landry Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Landry Brochure\",\n        \"projIndex\": \"Project_4aab25a0.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20090827235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090921120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20090912120000\",\n        \"compDate\": \"20170222120000\",\n        \"createdDate\": \"20090827113813\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"4\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4a96a865.PRJ4a96a867\",\n        \"ordQuant\": \"25000\",\n        \"ordPrice\": \"2750.0\",\n        \"ordNum\": \"0084\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-12.5\",\n        \"saveType\": \"1\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4aa9a3a7.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0085\",\n        \"jobName\": \"Allianz Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Spring Enrollment\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090914120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090915120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090916120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090914120000\",\n        \"proofPlannedDate\": \"20090915120000\",\n        \"deliverPlannedDate\": \"20090916120000\",\n        \"orderDate\": \"20090910120000\",\n        \"compDate\": \"20090910120000\",\n        \"createdDate\": \"20090910211103\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4aa9a3a7.PRJ4aa9a933\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0085\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2365.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ab29a7b.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0088\",\n        \"jobName\": \"Grand Test\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"ALPHA 1\",\n        \"projIndex\": \"Project_4a0246bc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090918120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20090917162219\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ab3cf64.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0089\",\n        \"jobName\": \"Project Test 1\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"909 TEST\",\n        \"projIndex\": \"Project_4ab3d140.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090922120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20090918142020\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ab3d02e.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0090\",\n        \"jobName\": \"Project Test 2\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"909 TEST\",\n        \"projIndex\": \"Project_4ab3d140.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090929120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20090918142342\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ab3d0b6.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0091\",\n        \"jobName\": \"Project Test 3\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"909 TEST\",\n        \"projIndex\": \"Project_4ab3d140.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090928120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20090928120000\",\n        \"orderDate\": \"20091014120000\",\n        \"compDate\": \"20091014120000\",\n        \"createdDate\": \"20090918142558\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4ab3d0b6.PRJ4ab3d0ea\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"164.0\",\n        \"ordNum\": \"0091\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4abb8edc.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0092\",\n        \"jobName\": \"Travelguard Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Enrollment\",\n        \"projIndex\": \"Project_4a76e7cf.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090928120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090929120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090930120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090928120000\",\n        \"proofPlannedDate\": \"20090929120000\",\n        \"deliverPlannedDate\": \"20090930120000\",\n        \"orderDate\": \"20090924120000\",\n        \"compDate\": \"20090924120000\",\n        \"createdDate\": \"20090924112308\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4abb8edc.PRJ4abb91b1\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"124234234\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2375.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4abb9ae7.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0093\",\n        \"jobName\": \"Travelguard Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Enrollment\",\n        \"projIndex\": \"Project_4a76e7cf.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20090924120000\",\n        \"compDate\": \"20090924120000\",\n        \"createdDate\": \"20090924121431\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4abb9ae7.PRJ4abb9ae9\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"0093\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4abcf17c.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0094\",\n        \"jobName\": \"Starbucks Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Enrollment\",\n        \"projIndex\": \"Project_4a76e7cf.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20090925235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090926120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20090929120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20090930120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090926120000\",\n        \"proofPlannedDate\": \"20090929120000\",\n        \"deliverPlannedDate\": \"20090930120000\",\n        \"orderDate\": \"20090925120000\",\n        \"compDate\": \"20090925120000\",\n        \"createdDate\": \"20090925123612\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4abcf17c.PRJ4abcfb3a\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0094\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2545.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4abd00d3.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0095\",\n        \"jobName\": \"Travelguard Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Spring Enrollment\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20090924120000\",\n        \"compDate\": \"20090924120000\",\n        \"createdDate\": \"20090925134139\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ac25c80.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0096\",\n        \"jobName\": \"OCE Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Enrollment\",\n        \"projIndex\": \"Project_4a76e7cf.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20090930120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091006120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091026120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20090930120000\",\n        \"proofPlannedDate\": \"20091006120000\",\n        \"deliverPlannedDate\": \"20091026120000\",\n        \"orderDate\": \"20090929120000\",\n        \"compDate\": \"20090929120000\",\n        \"createdDate\": \"20090929151408\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4ac25c80.PRJ4ac25e8d\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"23423423\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2575.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"This is a test of the Job Savings notes\"\n    },\n    {\n        \"jobIndex\": \"4ac26341.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0097\",\n        \"jobName\": \"Starbucks Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Spring Enrollment\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20090929235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20090925120000\",\n        \"compDate\": \"20090925120000\",\n        \"createdDate\": \"20090929154257\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ac28ff1.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0098\",\n        \"jobName\": \"UC Enrollment Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Enrollment\",\n        \"projIndex\": \"Project_4ac29565.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20090930235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091002120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091008120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091014120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091002120000\",\n        \"proofPlannedDate\": \"20091008120000\",\n        \"deliverPlannedDate\": \"20091014120000\",\n        \"orderDate\": \"20091014120000\",\n        \"compDate\": \"20090929120000\",\n        \"createdDate\": \"20090929185337\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4ac28ff1.PRJ4ac2934c\",\n        \"ordQuant\": \"30000\",\n        \"ordPrice\": \"2435.0\",\n        \"ordNum\": \"252523\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2631.0\",\n        \"savingsAmt\": \"310.0\",\n        \"saveType\": \"Size Change\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ac359cf.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0099\",\n        \"jobName\": \"Renzo Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20091014120000\",\n        \"createdDate\": \"20090930091455\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ac426b6.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0100\",\n        \"jobName\": \"USYD Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"USYD Brochure\",\n        \"projIndex\": \"Project_4ac42c12.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20090930235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091006120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091008120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091015120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091006120000\",\n        \"proofPlannedDate\": \"20091008120000\",\n        \"deliverPlannedDate\": \"20091015120000\",\n        \"orderDate\": \"20091118120000\",\n        \"compDate\": \"20091001120000\",\n        \"createdDate\": \"20090930234910\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4ac426b6.PRJ4ac42a8a\",\n        \"ordQuant\": \"30000\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"23422\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2570.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4acb6c16.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0101\",\n        \"jobName\": \"Dedes brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Dedes brochure\",\n        \"projIndex\": \"Project_4acb71dd.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091008120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091009120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091016120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091008120000\",\n        \"proofPlannedDate\": \"20091009120000\",\n        \"deliverPlannedDate\": \"20091016120000\",\n        \"orderDate\": \"20091006120000\",\n        \"compDate\": \"20091006120000\",\n        \"createdDate\": \"20091006121102\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4acb6c16.PRJ4acb6dac\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0101\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4acb74bb.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0102\",\n        \"jobName\": \"Dedes brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Dedes brochure\",\n        \"projIndex\": \"Project_4acb71dd.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20091006120000\",\n        \"compDate\": \"20091006120000\",\n        \"createdDate\": \"20091006124755\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ad5e817.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0106\",\n        \"jobName\": \"Sprint Enrollment\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Enrollment\",\n        \"projIndex\": \"Project_4ac29565.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091014235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091015120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091015120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091021120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091015120000\",\n        \"proofPlannedDate\": \"20091015120000\",\n        \"deliverPlannedDate\": \"20091021120000\",\n        \"orderDate\": \"20091014120000\",\n        \"compDate\": \"20091014120000\",\n        \"createdDate\": \"20091014110247\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4ad5e817.PRJ4ad5f755\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"4000.0\",\n        \"ordNum\": \"0106\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"4000.0\",\n        \"savingsAmt\": \"-33.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ad5e9ce.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0107\",\n        \"jobName\": \"Spring Enrollment Mailer\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Enrollment\",\n        \"projIndex\": \"Project_4a76e7cf.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091014235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091030120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170523120000\",\n        \"createdDate\": \"20091014111006\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ad5faa8.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0106-A\",\n        \"jobName\": \"Sprint Enrollment\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Enrollment\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20091015120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091015120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091021120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20091014122200\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4adf3b85.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0109\",\n        \"jobName\": \"Tribune Brochure\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Tribune campaign\",\n        \"projIndex\": \"Project_4adf3d29.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091023120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091026120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091029120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091023120000\",\n        \"proofPlannedDate\": \"20091026120000\",\n        \"deliverPlannedDate\": \"20091029120000\",\n        \"orderDate\": \"20091021120000\",\n        \"compDate\": \"20091021120000\",\n        \"createdDate\": \"20091021124909\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4adf3b85.PRJ4adf3fe3\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"0109\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ae062a2.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0111\",\n        \"jobName\": \"MediaNet\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Medianet \",\n        \"projIndex\": \"Project_4ae06384.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091022235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091023120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091026120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091029120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091023120000\",\n        \"proofPlannedDate\": \"20091026120000\",\n        \"deliverPlannedDate\": \"20091029120000\",\n        \"orderDate\": \"20091022120000\",\n        \"compDate\": \"20091022120000\",\n        \"createdDate\": \"20091022094818\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4ae062a2.PRJ4ae066c6\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0111\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2889.0\",\n        \"savingsAmt\": \"200.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ae084db.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0113\",\n        \"jobName\": \"Tribune East Brochure\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Tribune campaign\",\n        \"projIndex\": \"Project_4adf3d29.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091023120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091027120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091030120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091023120000\",\n        \"proofPlannedDate\": \"20091027120000\",\n        \"deliverPlannedDate\": \"20091030120000\",\n        \"orderDate\": \"20091022120000\",\n        \"compDate\": \"20091022120000\",\n        \"createdDate\": \"20091022121419\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4ae084db.PRJ4ae0892e\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0113\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2715.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ae59db8.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0115\",\n        \"jobName\": \"Aetna Life Brochure\",\n        \"custName\": \"Sales - southeast region - \",\n        \"custIndex\": \"4ad5e881\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091026235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091027120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091029120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091105120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091027120000\",\n        \"proofPlannedDate\": \"20091029120000\",\n        \"deliverPlannedDate\": \"20091105120000\",\n        \"orderDate\": \"20091026120000\",\n        \"compDate\": \"20091026120000\",\n        \"createdDate\": \"20091026090144\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4ae59db8.PRJ4ae59ed8\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"1725.0\",\n        \"ordNum\": \"0115\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2215.0\",\n        \"savingsAmt\": \"950.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ae5afc1.PRJ\",\n        \"lastMod\": \"1557218840\",\n        \"jobNumber\": \"0116\",\n        \"jobName\": \"Tribune Brochure\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Tribune campaign\",\n        \"projIndex\": \"Project_4ae9cc3a.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091030120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20091021120000\",\n        \"compDate\": \"20091021120000\",\n        \"createdDate\": \"20091026101841\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ae602f2.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0117\",\n        \"jobName\": \"UC Enrollment Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Enrollment\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"58aef3c7\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20090930235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091002120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091008120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091014120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20091014120000\",\n        \"compDate\": \"20090929120000\",\n        \"createdDate\": \"20091026161338\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"Size Change\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4ae89306.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0119\",\n        \"jobName\": \"Meredith Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"USYD Brochure\",\n        \"projIndex\": \"Project_4ac42c12.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091029120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091030120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091106120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091029120000\",\n        \"proofPlannedDate\": \"20091030120000\",\n        \"deliverPlannedDate\": \"20091106120000\",\n        \"orderDate\": \"20091028120000\",\n        \"compDate\": \"20091028120000\",\n        \"createdDate\": \"20091028145254\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4ae89306.PRJ4ae893a7\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"3755.0\",\n        \"ordNum\": \"0119\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4af0663f.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0121\",\n        \"jobName\": \"YMCA Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"YMCA Brochure\",\n        \"projIndex\": \"Project_4af08010.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091103235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091104120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091105120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091111120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091104120000\",\n        \"proofPlannedDate\": \"20091105120000\",\n        \"deliverPlannedDate\": \"20091111120000\",\n        \"orderDate\": \"20091103120000\",\n        \"compDate\": \"20091103120000\",\n        \"createdDate\": \"20091103121959\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4af0663f.PRJ4af067f4\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"2090.0\",\n        \"ordNum\": \"0121\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"3163.0\",\n        \"savingsAmt\": \"485.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4af07dd5.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0122\",\n        \"jobName\": \"Meredith Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"USYD Brochure\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091103235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20091028120000\",\n        \"compDate\": \"20091028120000\",\n        \"createdDate\": \"20091103140037\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4af45889.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0123\",\n        \"jobName\": \"DPG Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Enrollment\",\n        \"projIndex\": \"Project_4a76e7cf.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20091109120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091118120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091124120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091109120000\",\n        \"proofPlannedDate\": \"20091118120000\",\n        \"deliverPlannedDate\": \"20091124120000\",\n        \"orderDate\": \"20091106120000\",\n        \"compDate\": \"20091106120000\",\n        \"createdDate\": \"20091106121033\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4af45889.PRJ4af45cb5\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0123\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2765.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4af45cfe.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0124\",\n        \"jobName\": \"DPG Mailer\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Enrollment\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091106235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20091106122934\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4af45e91.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0125\",\n        \"jobName\": \"DPG Brochure\",\n        \"custName\": \"Sales - southeast region - \",\n        \"custIndex\": \"4ad5e881\",\n        \"projName\": \"Enrollment\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20091109120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091118120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091124120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20091110120000\",\n        \"createdDate\": \"20091106123617\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4af987f5.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0126\",\n        \"jobName\": \"GP Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20091110103413\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4af9c66e.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0127\",\n        \"jobName\": \"Petsmart Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Petsmart Brochure\",\n        \"projIndex\": \"Project_4b043634.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091110235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091111120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091112120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091117120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091111120000\",\n        \"proofPlannedDate\": \"20091112120000\",\n        \"deliverPlannedDate\": \"20091117120000\",\n        \"orderDate\": \"20091110120000\",\n        \"compDate\": \"20091110120000\",\n        \"createdDate\": \"20091110150046\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4af9c66e.PRJ4af9cc09\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"1900.0\",\n        \"ordNum\": \"0127\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2330.0\",\n        \"savingsAmt\": \"183.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4af9d0a4.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0128\",\n        \"jobName\": \"Tribune Brochure\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Tribune campaign\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091111235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20091208120000\",\n        \"compDate\": \"20091021120000\",\n        \"createdDate\": \"20091110154420\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4af9d0a4.PRJ4b226387\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"20.0\",\n        \"ordNum\": \"0128\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"2.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4afc6c4b.PRJ\",\n        \"lastMod\": \"1668549483\",\n        \"jobNumber\": \"0129\",\n        \"jobName\": \"Synq manual x\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Synq manual\",\n        \"projIndex\": \"Project_4afc70e7.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091112235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091113120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091117120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091120120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091113120000\",\n        \"proofPlannedDate\": \"20091117120000\",\n        \"deliverPlannedDate\": \"20091120120000\",\n        \"orderDate\": \"20091112120000\",\n        \"compDate\": \"20091112120000\",\n        \"createdDate\": \"20091112151259\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4afc6c4b.PRJ4afc6ef8\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"1243123\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"1800.00\",\n        \"savingsAmt\": \"400.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b042266.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0130\",\n        \"jobName\": \"AHA Kit\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"USYD Brochure\",\n        \"projIndex\": \"Project_4ac42c12.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091118235900\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170523120000\",\n        \"createdDate\": \"20091118113550\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b057cbd.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0131\",\n        \"jobName\": \"Charter Brochure\",\n        \"custName\": \"Sales - southeast region - \",\n        \"custIndex\": \"4ad5e881\",\n        \"projName\": \"Charter Brochure\",\n        \"projIndex\": \"Project_4b058210.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091119235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091120120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091123120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091125120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091120120000\",\n        \"proofPlannedDate\": \"20091123120000\",\n        \"deliverPlannedDate\": \"20091125120000\",\n        \"orderDate\": \"20091119120000\",\n        \"compDate\": \"20091119120000\",\n        \"createdDate\": \"20091119121333\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4b057cbd.PRJ4b057feb\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1765.0\",\n        \"ordNum\": \"0131\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2490.0\",\n        \"savingsAmt\": \"335.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b058403.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0132\",\n        \"jobName\": \"AHA Kit\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"USYD Brochure\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20091119124435\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b0bf901.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0133\",\n        \"jobName\": \"NS Group Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"NS Group Brochure\",\n        \"projIndex\": \"Project_4b0bfff8.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091125120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091127120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091130120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091125120000\",\n        \"proofPlannedDate\": \"20091127120000\",\n        \"deliverPlannedDate\": \"20091130120000\",\n        \"orderDate\": \"20091124120000\",\n        \"compDate\": \"20091124120000\",\n        \"createdDate\": \"20091124101721\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4b0bf901.PRJ4b0bfcd3\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0133\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2895.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b0c36fb.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0135\",\n        \"jobName\": \"Charming Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Charming Brochure\",\n        \"projIndex\": \"Project_4b0c4173.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091125120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091130120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091209120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091125120000\",\n        \"proofPlannedDate\": \"20091130120000\",\n        \"deliverPlannedDate\": \"20091209120000\",\n        \"orderDate\": \"20091124120000\",\n        \"compDate\": \"20091124120000\",\n        \"createdDate\": \"20091124144147\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4b0c36fb.PRJ4b0c38e0\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0135\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2837.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b16ddef.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0140\",\n        \"jobName\": \"Synq manual\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Synq manual\",\n        \"projIndex\": \"Project_4afc70e7.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091202235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20091112120000\",\n        \"compDate\": \"20091112120000\",\n        \"createdDate\": \"20091202163647\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b213ba5.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0141\",\n        \"jobName\": \"Marketing Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"PI Brochure\",\n        \"projIndex\": \"Project_55a7e4a7.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091210235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091211120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091214120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091216120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151030120000\",\n        \"createdDate\": \"20091210131917\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"*\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b21484b.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0142\",\n        \"jobName\": \"Marketing Mailer\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"spring cat\",\n        \"projIndex\": \"Project_4f300eb4.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091210235900\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20091211120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091214120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091216120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140522120000\",\n        \"createdDate\": \"20091210141315\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b2656a6.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0143\",\n        \"jobName\": \"AETNA\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"Development\",\n        \"projIndex\": \"Project_4b2aa1ff.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091214235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091216120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091217120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091221120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091216120000\",\n        \"proofPlannedDate\": \"20091217120000\",\n        \"deliverPlannedDate\": \"20091221120000\",\n        \"orderDate\": \"20091214120000\",\n        \"compDate\": \"20091215120000\",\n        \"createdDate\": \"20091214101550\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4b2656a6.PRJ4b265850\",\n        \"ordQuant\": \"200000\",\n        \"ordPrice\": \"36000.0\",\n        \"ordNum\": \"0143\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"9000.0\",\n        \"saveType\": \"Cost Avoidance - Increase Avoidance Savings\",\n        \"saveNote\": \"Eliminated paper price increase: savings $890\"\n    },\n    {\n        \"jobIndex\": \"4b28133a.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0144\",\n        \"jobName\": \"Meredith Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091028235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091029120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091030120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091106120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091029120000\",\n        \"proofPlannedDate\": \"20091030120000\",\n        \"deliverPlannedDate\": \"20091106120000\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20091028120000\",\n        \"createdDate\": \"20091215175242\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4b28133a.PRJ58b5bfc7\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"450.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b28f895.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0145\",\n        \"jobName\": \"PMN Brochure\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"PMN Brochure\",\n        \"projIndex\": \"Project_4b29000b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091216235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091217120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091221120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091230120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20091216120000\",\n        \"compDate\": \"20091216120000\",\n        \"createdDate\": \"20091216101117\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4b28f895.PRJ4b28fd92\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"180000.0\",\n        \"ordNum\": \"0145\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"192456.0\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b2b9387.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0147\",\n        \"jobName\": \"Wellcare Brochure\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"Wellcare Project\",\n        \"projIndex\": \"Project_4b2b9975.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091218235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091223120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20091224120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20091230120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20091221120000\",\n        \"proofPlannedDate\": \"20091223120000\",\n        \"deliverPlannedDate\": \"20091230120000\",\n        \"orderDate\": \"20091218120000\",\n        \"compDate\": \"20091218120000\",\n        \"createdDate\": \"20091218093655\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4b2b9387.PRJ4b2b972a\",\n        \"ordQuant\": \"30000\",\n        \"ordPrice\": \"19500.0\",\n        \"ordNum\": \"0147\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"21150.0\",\n        \"savingsAmt\": \"8500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b393054.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0149\",\n        \"jobName\": \"Grid Alpha 1\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"Grid Alpha 1\",\n        \"projIndex\": \"Project_4bab7aba.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20091229035900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20091231120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100105120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20080110120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140522120000\",\n        \"createdDate\": \"20091228172524\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b4113e6.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0150\",\n        \"jobName\": \"Grid Alpha 2\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"Grid Project\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100103130000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20100105120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100107120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100118120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140522120000\",\n        \"createdDate\": \"20100103170214\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b894442.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0153\",\n        \"jobName\": \"InterimAlpha-6-b\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100402235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20100405120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100415120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100428120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20100227120000\",\n        \"proofPlannedDate\": \"20100227120000\",\n        \"deliverPlannedDate\": \"20100228120000\",\n        \"orderDate\": \"20100227120000\",\n        \"compDate\": \"20130719120000\",\n        \"createdDate\": \"20100227111146\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4b894442.PRJ4b894565\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3400.0\",\n        \"ordNum\": \"0153\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"200.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b894bd2.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0154\",\n        \"jobName\": \"InterimAlpha-7\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100227235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20100227120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100227120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100228120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20100227120000\",\n        \"proofPlannedDate\": \"20100227120000\",\n        \"deliverPlannedDate\": \"20100228120000\",\n        \"orderDate\": \"20100227120000\",\n        \"compDate\": \"20130719120000\",\n        \"createdDate\": \"20100227114402\",\n        \"numBidders\": \"6\",\n        \"numBids\": \"5\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4b894bd2.PRJ4b894c28\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"7250.0\",\n        \"ordNum\": \"0154\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1582.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b894ecb.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0155\",\n        \"jobName\": \"InterimAlpha-8\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100227235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20100228120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100303120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100310120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20100228120000\",\n        \"proofPlannedDate\": \"20100303120000\",\n        \"deliverPlannedDate\": \"20100310120000\",\n        \"orderDate\": \"20100227120000\",\n        \"compDate\": \"20130719120000\",\n        \"createdDate\": \"20100227115643\",\n        \"numBidders\": \"7\",\n        \"numBids\": \"7\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4b894ecb.PRJ4b89513a\",\n        \"ordQuant\": \"40000\",\n        \"ordPrice\": \"7760.0\",\n        \"ordNum\": \"0155\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"2065.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b8bd08d.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0156\",\n        \"jobName\": \"InterimAlpha-9\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100301235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20100303120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100304120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100308120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20100303120000\",\n        \"proofPlannedDate\": \"20100304120000\",\n        \"deliverPlannedDate\": \"20100308120000\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20131018120000\",\n        \"createdDate\": \"20100301093453\",\n        \"numBidders\": \"9\",\n        \"numBids\": \"9\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4b8bd08d.PRJ4b8bd124\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b8befbb.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0157\",\n        \"jobName\": \"InterimBeta-2\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"DevelopmentBeta\",\n        \"projIndex\": \"Project_4b8c1fa2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100301120000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20100303120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100305120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100308120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20100303120000\",\n        \"proofPlannedDate\": \"20100305120000\",\n        \"deliverPlannedDate\": \"20100308120000\",\n        \"orderDate\": \"20130621110201\",\n        \"compDate\": \"20130719120000\",\n        \"createdDate\": \"20100301114755\",\n        \"numBidders\": \"8\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4b8befbb.PRJ4b8bf2c3\",\n        \"ordQuant\": \"200000\",\n        \"ordPrice\": \"3214.0\",\n        \"ordNum\": \"0157\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130621110201\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4b8bf380.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0158\",\n        \"jobName\": \"InterimBeta-3\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"DevelopmentBeta\",\n        \"projIndex\": \"Project_4b8c1fa2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100301225900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20100310120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100311120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100315120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20100310120000\",\n        \"proofPlannedDate\": \"20100311120000\",\n        \"deliverPlannedDate\": \"20100315120000\",\n        \"orderDate\": \"20100325120000\",\n        \"compDate\": \"20131018120000\",\n        \"createdDate\": \"20100301120400\",\n        \"numBidders\": \"9\",\n        \"numBids\": \"8\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4b8bf380.PRJ4b8bf5fb\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"2525.0\",\n        \"ordNum\": \"0158\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-280.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4bab90f7.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0159\",\n        \"jobName\": \"InterimBeta-3\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"InterimBeta-3\",\n        \"projIndex\": \"Project_4bbfa123.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100325235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20100405120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100408120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100415120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20100405120000\",\n        \"proofPlannedDate\": \"20100408120000\",\n        \"deliverPlannedDate\": \"20100415120000\",\n        \"orderDate\": \"20131018115635\",\n        \"compDate\": \"20131018120000\",\n        \"createdDate\": \"20100325123607\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4bab90f7.PRJ4bab90f9\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"2.0\",\n        \"ordNum\": \"0159\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20131018115635\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4bbeb1fb.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"0160\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100409235900\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130530120000\",\n        \"createdDate\": \"20100409005003\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4bbeb462.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0161\",\n        \"jobName\": \"InterimBeta-3\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100409235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130530120000\",\n        \"createdDate\": \"20100409010018\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4bbf6746.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0162\",\n        \"jobName\": \"InterimBeta-3\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100409235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20100412120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100414120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100421120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130530120000\",\n        \"createdDate\": \"20100409134334\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4bbffca1.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0163\",\n        \"jobName\": \"Online Beta 15\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100410235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20100414120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100416120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100423120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20100414120000\",\n        \"proofPlannedDate\": \"20100416120000\",\n        \"deliverPlannedDate\": \"20100423120000\",\n        \"orderDate\": \"20100410120000\",\n        \"compDate\": \"20130530120000\",\n        \"createdDate\": \"20100410002049\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4bbffca1.PRJ4bbfffce\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"83893.0\",\n        \"ordNum\": \"0163\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4be42d8c.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0165\",\n        \"jobName\": \"Beta Test 21\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100507235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100514120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20100514120000\",\n        \"orderDate\": \"20100507120000\",\n        \"compDate\": \"20100507120000\",\n        \"createdDate\": \"20100507111108\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4be42d8c.PRJ4be42dba\",\n        \"ordQuant\": \"1\",\n        \"ordPrice\": \"10.0\",\n        \"ordNum\": \"0165\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4be75f04.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0166\",\n        \"jobName\": \"Beta Test 22\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"ALPHA 1\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100509235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100518120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20100509120000\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20100509211900\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4be75f04.PRJ4be75f48\",\n        \"ordQuant\": \"20\",\n        \"ordPrice\": \"30.0\",\n        \"ordNum\": \"0166\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4be75fe4.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0167\",\n        \"jobName\": \"Beta Test 22\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"ALPHA 1\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100509235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20100511120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100513120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100518120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20100509120000\",\n        \"compDate\": \"20131018120000\",\n        \"createdDate\": \"20100509212244\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4be75fe4.PRJ4be7605c\",\n        \"ordQuant\": \"20\",\n        \"ordPrice\": \"200.0\",\n        \"ordNum\": \"0167\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"2.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4bec1546.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0168\",\n        \"jobName\": \"Beta Test 23\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100514235900\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20100519120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100527120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100531120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20100513110542\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4bec2276.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0169\",\n        \"jobName\": \"Beta Test 24\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100513235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100514120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20100514120000\",\n        \"orderDate\": \"20100513120000\",\n        \"compDate\": \"20131018120000\",\n        \"createdDate\": \"20100513120158\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4bec2276.PRJ4bec22be\",\n        \"ordQuant\": \"2\",\n        \"ordPrice\": \"2.0\",\n        \"ordNum\": \"0169\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4bed4ee7.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0170\",\n        \"jobName\": \"Beta Test 25\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Development\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100514235900\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20100517120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20100519120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100525120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20100514092351\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4bed96a7.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0171\",\n        \"jobName\": \"Beta Test 26\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Development\",\n        \"projIndex\": \"Project_4c05c0ec.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100514235900\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20100512120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20100512120000\",\n        \"orderDate\": \"20100514120000\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20100514142959\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4bed96a7.PRJ4bed9711\",\n        \"ordQuant\": \"7\",\n        \"ordPrice\": \"14.0\",\n        \"ordNum\": \"0171\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"4.3889\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4bf7e83e.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0172\",\n        \"jobName\": \"Beta Test 22\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20100522235900\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20100522102046\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4f2c0c4c.PRJ\",\n        \"lastMod\": \"1557218841\",\n        \"jobNumber\": \"0177\",\n        \"jobName\": \"32 page spring catalog\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"spring cat\",\n        \"projIndex\": \"Project_4f300eb4.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20120204150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20120208120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20120210120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20120217120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20120208120000\",\n        \"proofPlannedDate\": \"20120210120000\",\n        \"deliverPlannedDate\": \"20120217120000\",\n        \"orderDate\": \"20120206120000\",\n        \"compDate\": \"20140326120000\",\n        \"createdDate\": \"20120203113316\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4f2c0c4c.PRJ4f30048f\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"5900.0\",\n        \"ordNum\": \"ms2000\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4f33106e.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0178\",\n        \"jobName\": \"BOGO mailer\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"spring campaign\",\n        \"projIndex\": \"Project_4f3318c4.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20120209150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20120210120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20120213120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20120220120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20120210120000\",\n        \"proofPlannedDate\": \"20120213120000\",\n        \"deliverPlannedDate\": \"20120220120000\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141114120000\",\n        \"createdDate\": \"20120208191646\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"4f33106e.PRJ4f33106e\",\n        \"ordQuant\": \"40000\",\n        \"ordPrice\": \"4200.0\",\n        \"ordNum\": \"ms00101\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"66.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"4f458579.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0179\",\n        \"jobName\": \"spring catalog\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"spring kick off\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20120223150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20120227120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20120228120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20120306120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150129120000\",\n        \"createdDate\": \"20120222191657\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"519a989f.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0182\",\n        \"jobName\": \"Brand Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Brand Brochure\",\n        \"projIndex\": \"Project_519a9b60.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130521150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130521174406\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130524174408\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130531174410\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130521174406\",\n        \"proofPlannedDate\": \"20130524174408\",\n        \"deliverPlannedDate\": \"20130531174410\",\n        \"orderDate\": \"20130520175858\",\n        \"compDate\": \"20130521120000\",\n        \"createdDate\": \"20130520174151\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"519a989f.PRJ519a9a29\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"20.0\",\n        \"ordNum\": \"0182\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130520175858\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"519a9ee1.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0183\",\n        \"jobName\": \"Service Manual - 12 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130520180833\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"519a9ee1.PRJ519a9ee2\",\n        \"ordQuant\": \"900\",\n        \"ordPrice\": \"25.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"519bdd1d.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0184\",\n        \"jobName\": \"Codra Manual 2\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"Codra Manual\",\n        \"projIndex\": \"Project_519bdce9.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130522150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20130523164648\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130524164651\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130530164701\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140522120000\",\n        \"createdDate\": \"20130521164621\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"519c0db6.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0185\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"Twenty20Booklet\",\n        \"projIndex\": \"Project_519c0bd0.xml\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130530201356\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20130530201356\",\n        \"orderDate\": \"20130612130014\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130521201342\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"519c0db6.PRJ519c0db7\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"1240.0\",\n        \"ordNum\": \"0185\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130521201416\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"21.25\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"519c1c4a.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0186\",\n        \"jobName\": \"SGP Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"Drummond Project\",\n        \"projIndex\": \"Project_5273ccfb.xml\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130522150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20131105113747\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20131113113750\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20131116113752\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20131105113747\",\n        \"proofPlannedDate\": \"20131113113750\",\n        \"deliverPlannedDate\": \"20131116113752\",\n        \"orderDate\": \"20131101115040\",\n        \"compDate\": \"20140326120000\",\n        \"createdDate\": \"20130521211554\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"519c1c4a.PRJ5273cbe3\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0186\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20131101115040\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"750.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51a814f9.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"0187\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130531150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130530231153\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51a8174c.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0188\",\n        \"jobName\": \"Pacific Enrollment Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Pacific Enrollment Brochure\",\n        \"projIndex\": \"Project_51a81db2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130531150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130603232252\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130605232300\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130612232325\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130603232252\",\n        \"proofPlannedDate\": \"20130605232300\",\n        \"deliverPlannedDate\": \"20130612232325\",\n        \"orderDate\": \"20130531102752\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130530232148\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51a8174c.PRJ51a818a3\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1825.0\",\n        \"ordNum\": \"0188\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130520175858\",\n        \"orderSentDate\": \"20130531091300\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"261.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51acba18.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0189\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130620114536\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130621114538\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130628114541\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130620114536\",\n        \"proofPlannedDate\": \"20130621114538\",\n        \"deliverPlannedDate\": \"20130628114541\",\n        \"orderDate\": \"20130603114737\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130603114528\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51acba18.PRJ51acba1a\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"660.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130603114737\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"280.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51ae51e2.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0190\",\n        \"jobName\": \"Service Manual - 32 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130606164532\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130614164535\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130606164532\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20130614164535\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130604164522\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51ae51e2.PRJ51ae51e4\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"880.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"428.75\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51b767eb.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0191\",\n        \"jobName\": \"Bay Brochure\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"Bay Brochure Project\",\n        \"projIndex\": \"Project_51b76dc6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130612150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130614141201\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130617141204\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130621141206\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130614141201\",\n        \"proofPlannedDate\": \"20130617141204\",\n        \"deliverPlannedDate\": \"20130621141206\",\n        \"orderDate\": \"20130611145135\",\n        \"compDate\": \"20130614120000\",\n        \"createdDate\": \"20130611140947\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51b767eb.PRJ51b76b65\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1200.0\",\n        \"ordNum\": \"0191\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130611145135\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"700.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51b7772d.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0192\",\n        \"jobName\": \"Bay Brochure\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"4a1421ac\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130612150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20130611145135\",\n        \"compDate\": \"20130612120000\",\n        \"createdDate\": \"20130611151453\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51b7772d.PRJ51b8ac0f\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130611145135\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51bb26d3.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0193\",\n        \"jobName\": \"Unicef Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130617150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130618102335\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130620102340\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130628102353\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130618102335\",\n        \"proofPlannedDate\": \"20130620102340\",\n        \"deliverPlannedDate\": \"20130628102353\",\n        \"orderDate\": \"20130614104647\",\n        \"compDate\": \"20130618120000\",\n        \"createdDate\": \"20130614102107\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51bb26d3.PRJ51bb2936\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0193\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130614104647\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1033.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51bb2e40.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0194\",\n        \"jobName\": \"[Copy ] Bay Brochure\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130617150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20130611145135\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130614105248\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130611145135\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51bb3284.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0195\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130627111112\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20130627111112\",\n        \"orderDate\": \"20130614111123\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130614111100\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51bb3284.PRJ51bb3286\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"840.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130614111123\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"421.25\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51c07c52.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0196\",\n        \"jobName\": \"AON Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"AON Brochure\",\n        \"projIndex\": \"Project_51c082ff.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130619150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130620112828\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130621112839\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130627112843\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130620112828\",\n        \"proofPlannedDate\": \"20130621112839\",\n        \"deliverPlannedDate\": \"20130627112843\",\n        \"orderDate\": \"20130618115251\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130618112714\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51c07c52.PRJ51c07ecb\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0196\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130618115251\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1000.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51c08621.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0197 v2\",\n        \"jobName\": \"[Copy ] Service Manual - 24 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"6\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130619150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20130614111123\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130618120905\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130614111123\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51c08746.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0198\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130618121358\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51c08746.PRJ51c08748\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"840.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"421.25\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51c08767.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0199\",\n        \"jobName\": \"Cost Breakout\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130619150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130618121431\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51c0896d.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"0200\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130619150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20130618122309\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51c08af0.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0188\",\n        \"jobName\": \"Pacific Enrollment Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Pacific Enrollment Brochure\",\n        \"projIndex\": \"Project_51a81db2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130619150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130901120000\",\n        \"createdDate\": \"20130618122936\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51c46d4d.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0201\",\n        \"jobName\": \"Trib Manual\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"6\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130624150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130622111748\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140326120000\",\n        \"createdDate\": \"20130621111213\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51c8aff7.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0202\",\n        \"jobName\": \"T-CCC Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130625150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130626164734\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130628164737\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130630164739\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130624164543\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51c8b327.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0203-A\",\n        \"jobName\": \"CCC Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130625150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130625165951\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20130625165951\",\n        \"orderDate\": \"20130624171409\",\n        \"compDate\": \"20130624120000\",\n        \"createdDate\": \"20130624165919\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51c8b327.PRJ51c8b43f\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0203-A\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130624171409\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51c8baa5.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0204\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130628173133\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20130628173133\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130624173117\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51c8baa5.PRJ51c8baa6\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"840.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"421.25\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51e34522.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0205\",\n        \"jobName\": \"Live Job1\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Live Project1\",\n        \"projIndex\": \"Project_51e34565.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130715150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130717204226\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130718204231\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130722204234\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130717204226\",\n        \"proofPlannedDate\": \"20130718204231\",\n        \"deliverPlannedDate\": \"20130722204234\",\n        \"orderDate\": \"20130820105326\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130714204106\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51e34522.PRJ51e345c1\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"0205\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130730134050\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51e3efc1.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"0206\",\n        \"jobName\": \"LiveJob 2\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"6\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130716150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130725084934\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130731084936\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20130715084905\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51e5acc8.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"0207\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130717150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130716162752\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51e5adaf.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"LH134005\",\n        \"jobName\": \"Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130717150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130718164028\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130719164030\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130724164034\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130716163143\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51ed5bc5.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"LH134006\",\n        \"jobName\": \"Envelope\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"BAG Test\",\n        \"projIndex\": \"Project_51ed5b3f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"LH134006\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130723150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20130722125017\",\n        \"compDate\": \"20130722120000\",\n        \"createdDate\": \"20130722122021\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51ed5bc5.PRJ51ed5e9a\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"1645.0\",\n        \"ordNum\": \"LH134006\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130722125017\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51ed5cef.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"LH134006-p2\",\n        \"jobName\": \"Paper\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"BAG Test\",\n        \"projIndex\": \"Project_51ed5b3f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"LH134006\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130723150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130725125214\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20130725125214\",\n        \"orderDate\": \"20130722125224\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130722122519\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51ed5cef.PRJ51ed5d2c\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"236.0\",\n        \"ordNum\": \"LH134006-p2\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130722125224\",\n        \"orderSentDate\": \"20130722125310\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51ed9ef8.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"LH134008\",\n        \"jobName\": \"CCC Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130723150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130725171051\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130726171055\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130731171057\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130725171051\",\n        \"proofPlannedDate\": \"20130726171055\",\n        \"deliverPlannedDate\": \"20130731171057\",\n        \"orderDate\": \"20130722174112\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130722170704\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51ed9ef8.PRJ51eda276\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1200.0\",\n        \"ordNum\": \"LH134008\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130722174112\",\n        \"orderSentDate\": \"20130722174355\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"800.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51eda952.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"LH134009\",\n        \"jobName\": \"[Copy ] CCC Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130723150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20130722174112\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130722175114\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130722174112\",\n        \"orderSentDate\": \"20130722174355\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51eda9db.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"LH134010\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130723150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130722175331\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51eef0a5.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"LH134011\",\n        \"jobName\": \"CCC Manual\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130724150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130717171054\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130719171050\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130730171047\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130717171054\",\n        \"proofPlannedDate\": \"20130719171050\",\n        \"deliverPlannedDate\": \"20130730171047\",\n        \"orderDate\": \"20130723174139\",\n        \"compDate\": \"20130723120000\",\n        \"createdDate\": \"20130723170749\",\n        \"numBidders\": \"12\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51eef0a5.PRJ51eef48b\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1200.0\",\n        \"ordNum\": \"LH134011\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130723174139\",\n        \"orderSentDate\": \"20130723174318\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"700.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51eef9e8.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"LH134012\",\n        \"jobName\": \"[Copy ] CCC Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130724150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20130722174112\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130723174720\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130722174112\",\n        \"orderSentDate\": \"20130722174355\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51eefce9.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"LH134013\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130724150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130723180009\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51f15bac.PRJ\",\n        \"lastMod\": \"1634066962\",\n        \"jobNumber\": \"LH134014\",\n        \"jobName\": \"Service Manual - 16 pg\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Service Manual - 1\",\n        \"projIndex\": \"Project_521e1054.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130726130909\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20130726130909\",\n        \"orderDate\": \"20130725130921\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130725130900\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51f15bac.PRJ51f15bae\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"520.00\",\n        \"ordNum\": \"LH134014\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20211012152909\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"520.00\",\n        \"savingsAmt\": \"180.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51f6d95a.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"LH134015\",\n        \"jobName\": \"CCC Instructions\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130730150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130729170634\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"51f7ff92.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"LH134016\",\n        \"jobName\": \"Service Manual - 28 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130731140200\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20130731140200\",\n        \"orderDate\": \"20130730140215\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130730140154\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"51f7ff92.PRJ51f7ff94\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"860.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130730140215\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"425.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52175c33.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134018\",\n        \"jobName\": \"Pricing Test\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"6\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130826150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130829085752\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130823085723\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"4\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52178581.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134019\",\n        \"jobName\": \"Autumn Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Autumn Brochure -1\",\n        \"projIndex\": \"Project_52178a55.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130826150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130826115452\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130827115455\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130830115501\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130826115452\",\n        \"proofPlannedDate\": \"20130827115455\",\n        \"deliverPlannedDate\": \"20130830115501\",\n        \"orderDate\": \"20130823123007\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130823115337\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"52178581.PRJ521787e8\",\n        \"ordQuant\": \"300\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"00134019\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130823123007\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"521bef8b.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134020\",\n        \"jobName\": \"Bauer Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Bauer -1\",\n        \"projIndex\": \"Project_521bf5d3.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130827150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130828201643\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130830201646\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130831201648\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130828201643\",\n        \"proofPlannedDate\": \"20130830201646\",\n        \"deliverPlannedDate\": \"20130831201648\",\n        \"orderDate\": \"20130826205137\",\n        \"compDate\": \"20130826120000\",\n        \"createdDate\": \"20130826201507\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"521bef8b.PRJ521bf2f3\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00134020\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130826205137\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"521cf356.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134021\",\n        \"jobName\": \"PPG Service Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"New Distributor Mailer\",\n        \"projIndex\": \"Project_527d1a01.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130828150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140329144435\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140402144437\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140410144427\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140329144435\",\n        \"proofPlannedDate\": \"20140402144437\",\n        \"deliverPlannedDate\": \"20140409144427\",\n        \"orderDate\": \"20130827145935\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20130827144334\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"521cf356.PRJ521cf46f\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2500.0\",\n        \"ordNum\": \"00134021\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130827145935\",\n        \"orderSentDate\": \"20130827145958\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"521cf7b1.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134022\",\n        \"jobName\": \"[Copy ] Bay Brochure\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130828150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20130611145135\",\n        \"compDate\": \"20130829120000\",\n        \"createdDate\": \"20130827150209\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130611145135\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"521e0c8f.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134023\",\n        \"jobName\": \"Unicef\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Unicef -1\",\n        \"projIndex\": \"Project_521e0e50.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130829150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130829104400\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130830104403\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130831104406\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130829104400\",\n        \"proofPlannedDate\": \"20130830104403\",\n        \"deliverPlannedDate\": \"20130831104406\",\n        \"orderDate\": \"20131108120212\",\n        \"compDate\": \"20140722120000\",\n        \"createdDate\": \"20130828104327\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"521e0c8f.PRJ527d144d\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00134023\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20131108120212\",\n        \"orderSentDate\": \"20131108120328\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"750.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"521f4300.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134024\",\n        \"jobName\": \"Service Manual\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"Service Manual-1\",\n        \"projIndex\": \"Project_521f4847.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130830150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130830084943\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130831084945\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130831084947\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130830084943\",\n        \"proofPlannedDate\": \"20130831084945\",\n        \"deliverPlannedDate\": \"20130831084947\",\n        \"orderDate\": \"20130829092120\",\n        \"compDate\": \"20140326120000\",\n        \"createdDate\": \"20130829084800\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"521f4300.PRJ521f44dd\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00134024\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130829092120\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"521f6933.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"000134025\",\n        \"jobName\": \"Borox Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"Xerox Brochure - 1\",\n        \"projIndex\": \"Project_521f6b9b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130829150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130830113427\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130830113424\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130831113422\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151022120000\",\n        \"createdDate\": \"20130829113059\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5229fb95.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00134026\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130909150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20130906115813\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5229fbe5.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134027\",\n        \"jobName\": \"Mortgage Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130909150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130930145649\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140723120000\",\n        \"createdDate\": \"20130906115933\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52320bdf.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134028\",\n        \"jobName\": \"Cornerstone Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Cornerstone Brochure Project\",\n        \"projIndex\": \"Project_52320fe9.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130913150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130913144705\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130914144707\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130918144710\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130913144705\",\n        \"proofPlannedDate\": \"20130914144707\",\n        \"deliverPlannedDate\": \"20130918144710\",\n        \"orderDate\": \"20130912151003\",\n        \"compDate\": \"20130912120000\",\n        \"createdDate\": \"20130912144551\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"52320bdf.PRJ52320df8\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00134028\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130912151003\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"523212a4.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134029\",\n        \"jobName\": \"PPG Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130913150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20130827145935\",\n        \"compDate\": \"20141001120000\",\n        \"createdDate\": \"20130912151444\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130827145935\",\n        \"orderSentDate\": \"20130827145958\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"523216dd.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134030\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20131108120000\",\n        \"createdDate\": \"20130912153245\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"523216dd.PRJ523216df\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"840.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"421.25\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"523872d5.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134031\",\n        \"jobName\": \"Merck Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Merck Project\",\n        \"projIndex\": \"Project_523876cf.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130918150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130919112009\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130923112011\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130926112014\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130919112009\",\n        \"proofPlannedDate\": \"20130923112011\",\n        \"deliverPlannedDate\": \"20130926112014\",\n        \"orderDate\": \"20130917114344\",\n        \"compDate\": \"20130917120000\",\n        \"createdDate\": \"20130917111845\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"523872d5.PRJ52387469\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00134031\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130917114344\",\n        \"orderSentDate\": \"20130917114426\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"523879ed.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134032\",\n        \"jobName\": \"Autumn Brochure-English\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"Corncord \",\n        \"projIndex\": \"Project_52a0e3bf.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130918150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140430121606\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140430121608\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140430121610\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140430121606\",\n        \"proofPlannedDate\": \"20140430121608\",\n        \"deliverPlannedDate\": \"20140430121610\",\n        \"orderDate\": \"20140429124318\",\n        \"compDate\": \"20140522120000\",\n        \"createdDate\": \"20130917114901\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"523879ed.PRJ535fd263\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00134032\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130823123007\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1833.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"524334af.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134033\",\n        \"jobName\": \"Colonial Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"Colonial Brochure Project\",\n        \"projIndex\": \"Project_5243396b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130926150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130927150945\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130929150949\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130930150953\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130927150945\",\n        \"proofPlannedDate\": \"20130929150949\",\n        \"deliverPlannedDate\": \"20130930150953\",\n        \"orderDate\": \"20130925153631\",\n        \"compDate\": \"20130925120000\",\n        \"createdDate\": \"20130925150831\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"524334af.PRJ52433764\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00134033\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130925153631\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"100.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52433d68.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134034\",\n        \"jobName\": \"[Copy ] Colonial Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130926150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20130925153631\",\n        \"compDate\": \"20131018120000\",\n        \"createdDate\": \"20130925154544\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130925153631\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5244487e.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134035\",\n        \"jobName\": \"BIG Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"BIG Brochure Project\",\n        \"projIndex\": \"Project_52444d48.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130927150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20130928104608\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20130929104612\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20130930104617\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20130928104608\",\n        \"proofPlannedDate\": \"20130929104612\",\n        \"deliverPlannedDate\": \"20130930104617\",\n        \"orderDate\": \"20130926111456\",\n        \"compDate\": \"20130926120000\",\n        \"createdDate\": \"20130926104518\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5244487e.PRJ52444a06\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00134035\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130926111456\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1133.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5244539a.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134036\",\n        \"jobName\": \"[Copy ] BIG Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20130927150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20130926111456\",\n        \"compDate\": \"20131018120000\",\n        \"createdDate\": \"20130926113242\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5244539a.PRJ524455db\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130926111456\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5256b65f.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134037\",\n        \"jobName\": \"Corncord Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"Corncord \",\n        \"projIndex\": \"Project_52a0e3bf.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131011150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20131014101828\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20131015101833\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20131018101835\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140127120000\",\n        \"createdDate\": \"20131010101455\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5256beb1.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00134038\",\n        \"jobName\": \"[Copy ] Corncord Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131011150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20131014101828\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20131015101833\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20131018101835\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20131010105025\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5256c030.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00134039\",\n        \"jobName\": \"wrgdgdsrtgrag\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131011150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20131010105648\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"525feeaa.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134040\",\n        \"jobName\": \"Hallmark\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131018150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20131019100718\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20131022100721\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20131030100725\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20131019100718\",\n        \"proofPlannedDate\": \"20131022100721\",\n        \"deliverPlannedDate\": \"20131030100725\",\n        \"orderDate\": \"20131029112923\",\n        \"compDate\": \"20131017120000\",\n        \"createdDate\": \"20131017100530\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"525feeaa.PRJ525ff1d7\",\n        \"ordQuant\": \"4000\",\n        \"ordPrice\": \"4000.0\",\n        \"ordNum\": \"00134040\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20131017103025\",\n        \"orderSentDate\": \"20131017103109\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1833.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"525ff7d5.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00134041\",\n        \"jobName\": \"[Copy ] Hallmark\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131018150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20131017103025\",\n        \"compDate\": \"20131018120000\",\n        \"createdDate\": \"20131017104437\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20131017103025\",\n        \"orderSentDate\": \"20131017103109\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"525ff7f7.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134042\",\n        \"jobName\": \"Hallmark Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Hallmark Brochure\",\n        \"projIndex\": \"Project_5332f0ee.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131018150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140402173839\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140403173837\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140404104525\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140402173842\",\n        \"proofPlannedDate\": \"20140403173831\",\n        \"deliverPlannedDate\": \"20140404104525\",\n        \"orderDate\": \"20140402173805\",\n        \"compDate\": \"20140522120000\",\n        \"createdDate\": \"20131017104511\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"525ff7f7.PRJ5332f11a\",\n        \"ordQuant\": \"300\",\n        \"ordPrice\": \"185.0\",\n        \"ordNum\": \"00134042\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140402173805\",\n        \"orderSentDate\": \"20140402173819\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"107.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"526fd756.PRJ\",\n        \"lastMod\": \"1557218842\",\n        \"jobNumber\": \"00134043\",\n        \"jobName\": \"[Copy ] Allianz Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"6\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131030150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20131101120000\",\n        \"createdDate\": \"20131029114214\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"527d1a6a.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200000\",\n        \"jobName\": \"PPG Training Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"New Distributor Mailer\",\n        \"projIndex\": \"Project_527d1a01.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131216150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20131217141703\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20131218141723\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20131223141740\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20181018120000\",\n        \"createdDate\": \"20131108120754\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"527d1a6a.PRJ52cef348\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"527d1a90.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200001\",\n        \"jobName\": \"PPG Project Envelopes\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"New Distributor Mailer\",\n        \"projIndex\": \"Project_527d1a01.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131111150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140610120000\",\n        \"createdDate\": \"20131108120832\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"527d1dea.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200002\",\n        \"jobName\": \"PPG Brochure2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131111150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20130827145935\",\n        \"compDate\": \"20140723120000\",\n        \"createdDate\": \"20131108122250\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130827145935\",\n        \"orderSentDate\": \"20130827145958\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"528ccc9e.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200003\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131121150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20131120095214\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"528f7264.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200004\",\n        \"jobName\": \"safsdfsf\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131125150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20131122100404\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"529374dc.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200005\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131126150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20131125110340\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"529b56c9.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200006\",\n        \"jobName\": \"Tobe Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Tobe Project\",\n        \"projIndex\": \"Project_52e69503.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131202150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140127123305\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20140127123305\",\n        \"orderDate\": \"20140127123458\",\n        \"compDate\": \"20140127120000\",\n        \"createdDate\": \"20131201103329\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"529b56c9.PRJ529b606e\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3500.0\",\n        \"ordNum\": \"00200006\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140127123458\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"750.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"529f8e39.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200007\",\n        \"jobName\": \"BIG Invite\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131205150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20131213155655\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20131217155714\",\n        \"compDate\": \"20140723120000\",\n        \"createdDate\": \"20131204151905\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"529f8e39.PRJ52b0b94c\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"10.0\",\n        \"ordNum\": \"00200007\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20131217155714\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"529f8f03.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200008\",\n        \"jobName\": \"BIG Invite\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"BIG\",\n        \"projIndex\": \"Project_529f8ebd.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131205150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20131206152436\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20131209152441\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20131212152444\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20131206152436\",\n        \"proofPlannedDate\": \"20131209152441\",\n        \"deliverPlannedDate\": \"20131212152444\",\n        \"orderDate\": \"20131204161643\",\n        \"compDate\": \"20131204120000\",\n        \"createdDate\": \"20131204152227\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"529f8f03.PRJ529f927b\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200008\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20131204161643\",\n        \"orderSentDate\": \"20131204161803\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"529f9a09.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200009\",\n        \"jobName\": \"[Copy ] BIG Invite\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131205150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140325120000\",\n        \"createdDate\": \"20131204160929\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52a0dd23.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200010\",\n        \"jobName\": \"Bloomin Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131206150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20131220141944\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20131224141946\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20131227141949\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20131220141944\",\n        \"proofPlannedDate\": \"20131224141946\",\n        \"deliverPlannedDate\": \"20131227141949\",\n        \"orderDate\": \"20131218144401\",\n        \"compDate\": \"20131218120000\",\n        \"createdDate\": \"20131205150803\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"52a0dd23.PRJ52b1f745\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200010\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20131218144401\",\n        \"orderSentDate\": \"20131218144605\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1833.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52b1fe5b.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200011\",\n        \"jobName\": \"[Copy ] Bloomin Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131219150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20131218144401\",\n        \"compDate\": \"20140326120000\",\n        \"createdDate\": \"20131218145819\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20131218144401\",\n        \"orderSentDate\": \"20131218144605\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52cf209a.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00134021\",\n        \"jobName\": \"Welcome Letter\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"New Distributor Mailer\",\n        \"projIndex\": \"Project_527d1a01.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20131204150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20131206172037\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20131210172057\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20131216172112\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20131206172037\",\n        \"proofPlannedDate\": \"20131210172057\",\n        \"deliverPlannedDate\": \"20131216172112\",\n        \"orderDate\": \"20140130165906\",\n        \"compDate\": \"20140326120000\",\n        \"createdDate\": \"20140109172010\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"52cf209a.PRJ52cf222e\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"450.0\",\n        \"ordNum\": \"00134021\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140130165906\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"40.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52cf32ae.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00134021\",\n        \"jobName\": \"PPG Mailing Services\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"New Distributor Mailer\",\n        \"projIndex\": \"Project_527d1a01.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140110150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140112183730\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140326120000\",\n        \"createdDate\": \"20140109183718\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52d6c4b2.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200012\",\n        \"jobName\": \"Valspar Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140116150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140117153843\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140121153846\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140124153849\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140117153843\",\n        \"proofPlannedDate\": \"20140121153846\",\n        \"deliverPlannedDate\": \"20140124153849\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140115120000\",\n        \"createdDate\": \"20140115122610\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"52d6c4b2.PRJ52d6f411\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200012\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140115160940\",\n        \"orderSentDate\": \"20140115161024\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"600.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52d6f71a.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200013\",\n        \"jobName\": \"[Copy ] Valspar Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140116150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140117153843\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140121153846\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140124153849\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140326120000\",\n        \"createdDate\": \"20140115160114\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52d94001.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200014\",\n        \"jobName\": \"Product Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Product Proposal\",\n        \"projIndex\": \"Project_52d9406e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140120150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140120093905\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140121093908\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140124093911\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140120093905\",\n        \"proofPlannedDate\": \"20140121093908\",\n        \"deliverPlannedDate\": \"20140124093911\",\n        \"orderDate\": \"20140117101839\",\n        \"compDate\": \"20140117120000\",\n        \"createdDate\": \"20140117093649\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"52d94001.PRJ52d94295\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200014\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140117101839\",\n        \"orderSentDate\": \"20140117102022\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1666.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52e691c3.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200015\",\n        \"jobName\": \"PPG Mailing Services\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140128150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140723120000\",\n        \"createdDate\": \"20140127120507\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52e69ad1.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200016\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140327120000\",\n        \"createdDate\": \"20140127124345\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"52e69ad1.PRJ52e69ad2\",\n        \"ordQuant\": \"4000\",\n        \"ordPrice\": \"750.00\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"504.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52e7d02f.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200017\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140129150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140128104343\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52e7d197.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200018\",\n        \"jobName\": \"Drum Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140129150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140130105124\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140130105129\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140131105132\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140128120000\",\n        \"createdDate\": \"20140128104943\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52fb8897.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200019\",\n        \"jobName\": \"test\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140213150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20140214095058\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140218095101\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140214095105\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140212094335\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52fd1983.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200020\",\n        \"jobName\": \"Valencia Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Valencia Project\",\n        \"projIndex\": \"Project_52fd1f44.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140214150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140216141639\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140218141643\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140221141646\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140216141639\",\n        \"proofPlannedDate\": \"20140218141643\",\n        \"deliverPlannedDate\": \"20140221141646\",\n        \"orderDate\": \"20140213144745\",\n        \"compDate\": \"20140213120000\",\n        \"createdDate\": \"20140213141411\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"52fd1983.PRJ52fd1c3b\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200020\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140213144745\",\n        \"orderSentDate\": \"20140213145035\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"52fd2838.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200021\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140214150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140213151656\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"530bb262.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200022\",\n        \"jobName\": \"TESTbidreport\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140225150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140225155855\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140326120000\",\n        \"createdDate\": \"20140224155810\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"530bc742.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200023\",\n        \"jobName\": \"TESTversion\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140225150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140225172737\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140326120000\",\n        \"createdDate\": \"20140224172714\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"530bc855.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200024\",\n        \"jobName\": \"TESTversion2\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140225150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140226173223\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140326120000\",\n        \"createdDate\": \"20140224173149\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"530bcc1e.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200025\",\n        \"jobName\": \"TESTversion3\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140225150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140225174824\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140326120000\",\n        \"createdDate\": \"20140224174758\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5315ff71.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200026\",\n        \"jobName\": \"Drum II Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140305150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20140130105124\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140130105129\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140131105132\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140723120000\",\n        \"createdDate\": \"20140304112937\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53206112.PRJ\",\n        \"lastMod\": \"1618684398\",\n        \"jobNumber\": \"00200027\",\n        \"jobName\": \"QDirect Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"QDirect Project\",\n        \"projIndex\": \"Project_53206600.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140313150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140315093022\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140317093026\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140320093031\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140315093022\",\n        \"proofPlannedDate\": \"20140317093026\",\n        \"deliverPlannedDate\": \"20140320093031\",\n        \"orderDate\": \"20140312101639\",\n        \"compDate\": \"20140312120000\",\n        \"createdDate\": \"20140312092850\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53206112.PRJ532063ab\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200027\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140312101639\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53206e90.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200028\",\n        \"jobName\": \"[Copy ] Drum II Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140313150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140326120000\",\n        \"createdDate\": \"20140312102624\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5332eebb.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200029\",\n        \"jobName\": \"Tobe Direct Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Tobe Direct Project\",\n        \"projIndex\": \"Project_5332ee7e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140327150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140326111403\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"533442a2.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200030\",\n        \"jobName\": \"Cenveo Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Cenveo Brochure\",\n        \"projIndex\": \"Project_533442c9.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140328150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140329112518\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140330112527\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140331112530\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140329112518\",\n        \"proofPlannedDate\": \"20140330112527\",\n        \"deliverPlannedDate\": \"20140331112530\",\n        \"orderDate\": \"20140327120515\",\n        \"compDate\": \"20140327120000\",\n        \"createdDate\": \"20140327112418\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"533442a2.PRJ533445cc\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200030\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140327120515\",\n        \"orderSentDate\": \"20140327120641\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1000.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53349c62.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200031\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140328174742\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20140328174742\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140327120000\",\n        \"createdDate\": \"20140327174714\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53349c62.PRJ53349c64\",\n        \"ordQuant\": \"7501\",\n        \"ordPrice\": \"1140.0\",\n        \"ordNum\": \"00200031\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140327174752\",\n        \"orderSentDate\": \"20140327175458\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"533c5b35.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200032\",\n        \"jobName\": \"ES-Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140403110000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140404120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140723120000\",\n        \"createdDate\": \"20140402144717\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"533c93e8.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200033\",\n        \"jobName\": \"Bauer Media Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Bauer Media Project\",\n        \"projIndex\": \"Project_533c942b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140403150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140403185058\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140404185104\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140407185107\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140403185058\",\n        \"proofPlannedDate\": \"20140404185104\",\n        \"deliverPlannedDate\": \"20140407185107\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140402120000\",\n        \"createdDate\": \"20140402184912\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"533c93e8.PRJ533c960d\",\n        \"ordQuant\": \"2010\",\n        \"ordPrice\": \"2010.0\",\n        \"ordNum\": \"00200033\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140402191510\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1022.7222\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"533c9ae5.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200034\",\n        \"jobName\": \"Hallmark Crown Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140402191903\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140611092013\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140612092010\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"20140611092013\",\n        \"deliverPlannedDate\": \"20140612092010\",\n        \"orderDate\": \"20140604093455\",\n        \"compDate\": \"20140604120000\",\n        \"createdDate\": \"20140402191901\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"533c9ae5.PRJ533c9ae7\",\n        \"ordQuant\": \"100\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"00200034\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140402173805\",\n        \"orderSentDate\": \"20140402173819\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"533ca43f.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200035\",\n        \"jobName\": \"Bauer Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140404110000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140409120000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140411120000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140414120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141023120000\",\n        \"createdDate\": \"20140402195855\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"533da131.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200036\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140404150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140403135809\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"533daac3.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200037\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140404150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140403143859\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5342bc4d.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200038\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140408150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140407105509\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"534e88c9.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200039\",\n        \"jobName\": \"Valencia Manual\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140417150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140418094632\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140420094635\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140423094640\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140418094632\",\n        \"proofPlannedDate\": \"20140420094635\",\n        \"deliverPlannedDate\": \"20140423094640\",\n        \"orderDate\": \"20140416102818\",\n        \"compDate\": \"20140416120000\",\n        \"createdDate\": \"20140416094233\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"534e88c9.PRJ534e8da2\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"124q4235235\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140416102754\",\n        \"orderSentDate\": \"20140416102920\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"534e97d3.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200040\",\n        \"jobName\": \"Valencia Brochure 2\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140417150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20140213144745\",\n        \"compDate\": \"20140909120000\",\n        \"createdDate\": \"20140416104643\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140213144745\",\n        \"orderSentDate\": \"20140213145035\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53596da1.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200041\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140425150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140424160137\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"536d101e.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200043\",\n        \"jobName\": \"PDF-5914-1\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"PDF-project5914-1\",\n        \"projIndex\": \"Project_536d1056.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140512150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140516132902\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20140516132902\",\n        \"orderDate\": \"20140509135237\",\n        \"compDate\": \"20140522120000\",\n        \"createdDate\": \"20140509132758\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"536d101e.PRJ536d10a7\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"15.0\",\n        \"ordNum\": \"00200043\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140509135237\",\n        \"orderSentDate\": \"20140509135332\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"16.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53729b73.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200044\",\n        \"jobName\": \"Westpac Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140514150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140514182438\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140515182441\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140523182443\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140514182438\",\n        \"proofPlannedDate\": \"20140515182441\",\n        \"deliverPlannedDate\": \"20140523182443\",\n        \"orderDate\": \"20140513184501\",\n        \"compDate\": \"20140513120000\",\n        \"createdDate\": \"20140513182347\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53729b73.PRJ53729dc1\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200044\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140513184501\",\n        \"orderSentDate\": \"20140513184601\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1333.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5372a123.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200045\",\n        \"jobName\": \"Trib Manual\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"6\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140514150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140918120000\",\n        \"createdDate\": \"20140513184803\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5372a627.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200046\",\n        \"jobName\": \"PDF-51514-1\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"PDF-Project-51514-1\",\n        \"projIndex\": \"Project_53753444.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140514150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140515180707\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20140515180707\",\n        \"orderDate\": \"20140515180712\",\n        \"compDate\": \"20140522120000\",\n        \"createdDate\": \"20140513190927\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5372a627.PRJ5372a62b\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200046\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140509135237\",\n        \"orderSentDate\": \"20140509135332\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"666.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5372a68a.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200047\",\n        \"jobName\": \"Westpac Brochure AP\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"6\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140514150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20140513184501\",\n        \"compDate\": \"20140909120000\",\n        \"createdDate\": \"20140513191106\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140513184501\",\n        \"orderSentDate\": \"20140513184601\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5372bf12.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200048\",\n        \"jobName\": \"NT Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"NT Project\",\n        \"projIndex\": \"Project_5372c286.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140514150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140515205823\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140523205825\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140531205827\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140515205823\",\n        \"proofPlannedDate\": \"20140523205825\",\n        \"deliverPlannedDate\": \"20140531205827\",\n        \"orderDate\": \"20140513211730\",\n        \"compDate\": \"20140519120000\",\n        \"createdDate\": \"20140513205546\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5372bf12.PRJ5372c056\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200048\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140513211730\",\n        \"orderSentDate\": \"20140513211809\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5372c594.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200049\",\n        \"jobName\": \"NT Brochure 2\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140514150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20140513211730\",\n        \"compDate\": \"20140521120000\",\n        \"createdDate\": \"20140513212332\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140513211730\",\n        \"orderSentDate\": \"20140513211809\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5374d430.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200050\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140516150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140515105024\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537668d9.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200051\",\n        \"jobName\": \"Video Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Video Brochure1 Project\",\n        \"projIndex\": \"Project_53766895.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140519150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140520153832\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140521153836\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140527153842\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140723120000\",\n        \"createdDate\": \"20140516153657\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537678fe.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200052\",\n        \"jobName\": \"Video Brochure2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Video Brochure Project\",\n        \"projIndex\": \"Project_53766895.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140519150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20140520153832\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140521153836\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140527153842\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140516164550\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53767b17.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200053\",\n        \"jobName\": \"Video Brochure1\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Video Brochure1 Project\",\n        \"projIndex\": \"Project_53766895.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140516165450\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140520153832\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140521153836\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140527153842\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140520153832\",\n        \"proofPlannedDate\": \"20140521153836\",\n        \"deliverPlannedDate\": \"20140527153842\",\n        \"orderDate\": \"20150112172435\",\n        \"compDate\": \"20150128120000\",\n        \"createdDate\": \"20140516165447\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53767b17.PRJ53767b1a\",\n        \"ordQuant\": \"30000\",\n        \"ordPrice\": \"3850.0\",\n        \"ordNum\": \"00200053\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140520155655\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-500.5556\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53767e6d.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200054\",\n        \"jobName\": \"Video Brochures\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Video Brochures\",\n        \"projIndex\": \"Project_53910618.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140516170903\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140520153832\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140521153836\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140527153842\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140520153832\",\n        \"proofPlannedDate\": \"20140521153836\",\n        \"deliverPlannedDate\": \"20140527153842\",\n        \"orderDate\": \"20150107093216\",\n        \"compDate\": \"20150107120000\",\n        \"createdDate\": \"20140516170901\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53767e6d.PRJ53767e71\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"1200.0\",\n        \"ordNum\": \"00200054\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150107093216\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"311.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537681a8.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200055\",\n        \"jobName\": \"Videos Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Videos Brochure\",\n        \"projIndex\": \"Project_537d8576.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140516172250\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140520153832\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140521153836\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140527153842\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140520153832\",\n        \"proofPlannedDate\": \"20140521153836\",\n        \"deliverPlannedDate\": \"20140527153842\",\n        \"orderDate\": \"20140522010359\",\n        \"compDate\": \"20140724120000\",\n        \"createdDate\": \"20140516172248\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"537681a8.PRJ537681ac\",\n        \"ordQuant\": \"15000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200055\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140522010359\",\n        \"orderSentDate\": \"20140522010427\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"208.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537a2ab4.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200056\",\n        \"jobName\": \"HOUSE&GARDEN REVERSE BOUND BOOKLET \",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140520150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140530120250\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140519120052\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537a2f4c.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200057\",\n        \"jobName\": \"Rolling Stone Roll Fold\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140520150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140527122117\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140909120000\",\n        \"createdDate\": \"20140519122028\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537a8960.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200058\",\n        \"jobName\": \"Test2\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"Test2\",\n        \"projIndex\": \"Project_537a89b2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140520150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140519184448\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"537a8960.PRJ537a8982\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537a9ee8.PRJ\",\n        \"lastMod\": \"1557218843\",\n        \"jobNumber\": \"00200059\",\n        \"jobName\": \"Bauer booklet\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140520150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140526202042\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20140526202042\",\n        \"orderDate\": \"20140519212039\",\n        \"compDate\": \"20140519120000\",\n        \"createdDate\": \"20140519201640\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"537a9ee8.PRJ537aa2fb\",\n        \"ordQuant\": \"1500\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"00200059\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140519212039\",\n        \"orderSentDate\": \"20140519212256\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"566.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537ab0e0.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200060\",\n        \"jobName\": \"Bauer Brochure 1\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140520150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140723120000\",\n        \"createdDate\": \"20140519213320\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537ab186.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200061\",\n        \"jobName\": \"Test 5\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140520150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140519213606\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537b7a5d.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200062\",\n        \"jobName\": \"test job 5\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"test job 5\",\n        \"projIndex\": \"Project_537b7ac3.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140521150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140520115325\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140520115301\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537cc247.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200063\",\n        \"jobName\": \"Netplus Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140522150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20140523111324\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140527111327\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140529111331\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140909120000\",\n        \"createdDate\": \"20140521111207\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537d3206.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200064\",\n        \"jobName\": \"House & Garden Reverse Bound v3\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"HOUSE & GARDEN REVERSE BOUND v3\",\n        \"projIndex\": \"Project_537d31a6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140522150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140522190947\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20140522190947\",\n        \"orderDate\": \"20140521214433\",\n        \"compDate\": \"20140521120000\",\n        \"createdDate\": \"20140521190854\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"537d3206.PRJ537d3631\",\n        \"ordQuant\": \"360000\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"00200064\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140521214433\",\n        \"orderSentDate\": \"20140521214522\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537d404a.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200065\",\n        \"jobName\": \"Bayer Manual 5\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Bauer Manual 5 Project\",\n        \"projIndex\": \"Project_537d46ec.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140522090000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140523201152\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140526201149\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140528201145\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141114120000\",\n        \"createdDate\": \"20140521200946\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537d4986.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200066\",\n        \"jobName\": \"[Copy ] Bauer booklet\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140522150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20140519212039\",\n        \"compDate\": \"20140521120000\",\n        \"createdDate\": \"20140521204910\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140519212039\",\n        \"orderSentDate\": \"20140519212256\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537d4cb4.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200067\",\n        \"jobName\": \"Bayer Booklet 6\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Bauer Booklet 6\",\n        \"projIndex\": \"Project_5390b6de.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140522150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170523120000\",\n        \"createdDate\": \"20140521210244\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"537d4cb4.PRJ53e12244\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"15.0\",\n        \"ordNum\": \"00200067\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"7.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537d4d45.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200068\",\n        \"jobName\": \"Envelope\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Bauer Booklet 5\",\n        \"projIndex\": \"Project_537d4c81.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140522150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140521210509\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537d4dff.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200069\",\n        \"jobName\": \"Magazine\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"Magazine\",\n        \"projIndex\": \"Project_537d4db1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140522150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150107120000\",\n        \"createdDate\": \"20140521210815\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"537d4f61.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200070\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140522150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140521211409\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"538f357b.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200071\",\n        \"jobName\": \"Hallmark Training Brochured\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140605140000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140611111716\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20140611111716\",\n        \"orderDate\": \"20140604115353\",\n        \"compDate\": \"20140616120000\",\n        \"createdDate\": \"20140604110427\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"538f357b.PRJ538f3d1c\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200071\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140604115353\",\n        \"orderSentDate\": \"20140604115505\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"538f4225.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200072\",\n        \"jobName\": \"Hallmark Training Brochure-Book 2\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Hallmark Training Brochure-Book 2 Project\",\n        \"projIndex\": \"Project_5418504e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140605150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20140604115353\",\n        \"compDate\": \"20160223120000\",\n        \"createdDate\": \"20140604115829\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140604115353\",\n        \"orderSentDate\": \"20140604115505\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53972971.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200073\",\n        \"jobName\": \"Sephora Catalog 12\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job: \",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140611150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140612130741\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140618130747\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140627130751\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140612130741\",\n        \"proofPlannedDate\": \"20140618130747\",\n        \"deliverPlannedDate\": \"20140625000000\",\n        \"orderDate\": \"20140610132348\",\n        \"compDate\": \"20181018120000\",\n        \"createdDate\": \"20140610115113\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53972971.PRJ53973b90\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20140610132348\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"633.3333\",\n        \"saveType\": \"Cost Avoidance - Increase Avoidance Savings\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53974318.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200074\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140611150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140610134040\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53991a42.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200076\",\n        \"jobName\": \"Video Brochures2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Video Brochures\",\n        \"projIndex\": \"Project_53910618.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140611231100\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141120153832\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141121153836\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141124153842\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20141120153832\",\n        \"proofPlannedDate\": \"20141121153836\",\n        \"deliverPlannedDate\": \"20141124153842\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150107120000\",\n        \"createdDate\": \"20140611231058\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53991a42.PRJ53991a44\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53991ac6.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200077\",\n        \"jobName\": \"Video Series Brochure 3\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Video Brochures\",\n        \"projIndex\": \"Project_53910618.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141208100012\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141211153832\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141212153836\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141229153842\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20140611231310\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"5\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53991ac6.PRJ53991aca\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"5235.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1732.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53991b35.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200078\",\n        \"jobName\": \"Video Brochures4\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Video Brochures\",\n        \"projIndex\": \"Project_53910618.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140611231503\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140520153832\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140521153836\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140527153842\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140520153832\",\n        \"proofPlannedDate\": \"20140521153836\",\n        \"deliverPlannedDate\": \"20140527153842\",\n        \"orderDate\": \"20140909184404\",\n        \"compDate\": \"20140909120000\",\n        \"createdDate\": \"20140611231501\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53991b35.PRJ53991b37\",\n        \"ordQuant\": \"15000\",\n        \"ordPrice\": \"2250.0\",\n        \"ordNum\": \"12345\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140909184226\",\n        \"orderSentDate\": \"20140909184317\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"291.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"539f8060.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200079\",\n        \"jobName\": \"NT Brochure 1\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"NT Brochure\",\n        \"projIndex\": \"Project_539f8006.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140617140000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140618194047\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140619194050\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140624194053\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140618194047\",\n        \"proofPlannedDate\": \"20140619194050\",\n        \"deliverPlannedDate\": \"20140624194053\",\n        \"orderDate\": \"20140616200719\",\n        \"compDate\": \"20140909120000\",\n        \"createdDate\": \"20140616194016\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"539f8060.PRJ539f823b\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200079\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140616200719\",\n        \"orderSentDate\": \"20140616200827\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"539f88b5.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200080\",\n        \"jobName\": \"PPG Brochure2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140617150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20130827145935\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140616201549\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130827145935\",\n        \"orderSentDate\": \"20130827145958\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53a1a193.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200081\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140619150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140618102627\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53a1a218.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200082\",\n        \"jobName\": \"IPG Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"IPG Brochure Project\",\n        \"projIndex\": \"Project_53a1a1be.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140619150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140620102935\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140623102938\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140627102941\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140620102935\",\n        \"proofPlannedDate\": \"20140623102938\",\n        \"deliverPlannedDate\": \"20140627102941\",\n        \"orderDate\": \"20140618111216\",\n        \"compDate\": \"20140618120000\",\n        \"createdDate\": \"20140618102840\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53a1a218.PRJ53a1a584\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1675.0\",\n        \"ordNum\": \"00200082\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140618111216\",\n        \"orderSentDate\": \"20140618111303\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"716.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53a1af92.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200083\",\n        \"jobName\": \"[Copy ] IPG Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140619150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140628154448\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20140628154448\",\n        \"orderDate\": \"20140625154502\",\n        \"compDate\": \"20140625120000\",\n        \"createdDate\": \"20140618112610\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53a1af92.PRJ53a1b3cd\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"10.0\",\n        \"ordNum\": \"00200083\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140618111216\",\n        \"orderSentDate\": \"20140618111303\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53a1b41f.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200084\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140619150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140618114535\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53a1cd3b.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200082\",\n        \"jobName\": \"IPG Brochure: Creative Services\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"IPG Brochure Project\",\n        \"projIndex\": \"Project_53a1a1be.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140619150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20140618133413\",\n        \"compDate\": \"20140619120000\",\n        \"createdDate\": \"20140618133243\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53a1cd3b.PRJ53a1cd3b\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"850.0\",\n        \"ordNum\": \"00200082\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140618133413\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53a891a5.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200085\",\n        \"jobName\": \"IDG Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140624150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140718131324\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140721131326\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140731131328\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140718131324\",\n        \"proofPlannedDate\": \"20140721131326\",\n        \"deliverPlannedDate\": \"20140731131328\",\n        \"orderDate\": \"20150320120016\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20140623164421\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53a891a5.PRJ53a891a8\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"10.0\",\n        \"ordNum\": \"00200085\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140618111216\",\n        \"orderSentDate\": \"20140618111303\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"57.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53a8c429.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200086\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140624150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140623201953\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53a9b29f.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200087\",\n        \"jobName\": \"Utah Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"Utah Brochure Project\",\n        \"projIndex\": \"Project_53a9b5eb.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140625100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140626131856\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140627131858\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140630131900\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140626131856\",\n        \"proofPlannedDate\": \"20140627131858\",\n        \"deliverPlannedDate\": \"20140630131900\",\n        \"orderDate\": \"20140624134529\",\n        \"compDate\": \"20140624120000\",\n        \"createdDate\": \"20140624131719\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53a9b29f.PRJ53a9b450\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"1500.0\",\n        \"ordNum\": \"00200087\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140624134529\",\n        \"orderSentDate\": \"20140624134609\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"833.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53a9bae1.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200088\",\n        \"jobName\": \"[Copy ] Utah Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140625150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20140624134529\",\n        \"compDate\": \"20140723120000\",\n        \"createdDate\": \"20140624135233\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140624134529\",\n        \"orderSentDate\": \"20140624134609\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53b4aa74.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200089\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140703150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140702205724\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53b4aaac.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200090\",\n        \"jobName\": \"Brochure\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"\",\n        \"projIndex\": \"Project_53b4aa91.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140703150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140702205820\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53ba9011.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200091\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140708150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140707081825\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53ba9053.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200092\",\n        \"jobName\": \"blair's test\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"blair's test proposal\",\n        \"projIndex\": \"Project_53ba994c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140708150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140707081931\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53bbf3e3.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200093\",\n        \"jobName\": \"Jared's Brochure\",\n        \"custName\": \"Service Net - Pacific - Sam Moulton\",\n        \"custIndex\": \"53078800\",\n        \"projName\": \"Jared's Brochure\",\n        \"projIndex\": \"Project_53bbfa75.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140709150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140710094018\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140714094024\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140717094028\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140710094018\",\n        \"proofPlannedDate\": \"20140714094024\",\n        \"deliverPlannedDate\": \"20140717094028\",\n        \"orderDate\": \"20140708101941\",\n        \"compDate\": \"20150812120000\",\n        \"createdDate\": \"20140708093635\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53bbf3e3.PRJ53bbf508\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"1067.0\",\n        \"ordNum\": \"12121\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20140708101941\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1722.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53bbfeab.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200094\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140709150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150812120000\",\n        \"createdDate\": \"20140708102235\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53bbffd5.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200095\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140709150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150812120000\",\n        \"createdDate\": \"20140708102733\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53bc00bd.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200096\",\n        \"jobName\": \"Jared's Brochure B\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job: \",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140709150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20140708101941\",\n        \"compDate\": \"20150812120000\",\n        \"createdDate\": \"20140708103125\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140708101941\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53beb150.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200097\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140711150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140710112920\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53beb1bf.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200098\",\n        \"jobName\": \"Graphics Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Graphics Brochure\",\n        \"projIndex\": \"Project_53beb180.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140711140000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140711113245\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140714113248\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140724113251\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140711113245\",\n        \"proofPlannedDate\": \"20140714113248\",\n        \"deliverPlannedDate\": \"20140724113251\",\n        \"orderDate\": \"20140724172327\",\n        \"compDate\": \"20140801120000\",\n        \"createdDate\": \"20140710113111\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53beb1bf.PRJ53beb3d7\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1000.0\",\n        \"ordNum\": \"00200098\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140710115806\",\n        \"orderSentDate\": \"20140710115858\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1750.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53bebbfb.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200099\",\n        \"jobName\": \"Service Manual - 20 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140723120000\",\n        \"createdDate\": \"20140710121451\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53bebbfb.PRJ53bebbfd\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53bebd83.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200100\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140711150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140710122123\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53ce746e.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200101\",\n        \"jobName\": \"QPSI Brochurre\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"QPSI Project\",\n        \"projIndex\": \"Project_53ce742c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140723150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140724102626\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140728102630\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140730102633\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141017120000\",\n        \"createdDate\": \"20140722102550\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53ce7631.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200102\",\n        \"jobName\": \"Quick Ship Corregated\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"QPSI Project\",\n        \"projIndex\": \"Project_53ce742c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"6\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140723150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140725103333\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150107120000\",\n        \"createdDate\": \"20140722103321\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53ce813e.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200103\",\n        \"jobName\": \"QPSI Corregated-C\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"QDirect Project\",\n        \"projIndex\": \"Project_53206600.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140723150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141017120000\",\n        \"createdDate\": \"20140722112030\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53d025af.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200104\",\n        \"jobName\": \"Utah Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Utah Brochure\",\n        \"projIndex\": \"Project_53d02a45.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140724150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140725171511\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140728171516\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140731000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140725171511\",\n        \"proofPlannedDate\": \"20140728171516\",\n        \"deliverPlannedDate\": \"20140731000000\",\n        \"orderDate\": \"20140724170754\",\n        \"compDate\": \"20141114120000\",\n        \"createdDate\": \"20140723171423\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53d025af.PRJ53d026e4\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1600.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140724170754\",\n        \"orderSentDate\": \"20140724171223\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"400.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53d0294f.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200105\",\n        \"jobName\": \"Utah Brochure v.2\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141003150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141119140728\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141121140735\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141125140739\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20141119140728\",\n        \"proofPlannedDate\": \"20141121140735\",\n        \"deliverPlannedDate\": \"20141125140739\",\n        \"orderDate\": \"20141118115936\",\n        \"compDate\": \"20141223120000\",\n        \"createdDate\": \"20140723172951\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53d0294f.PRJ542d9592\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"5800.0\",\n        \"ordNum\": \"00200105\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20141118115936\",\n        \"orderSentDate\": \"20141118115947\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"966.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53d02e0d.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200106\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140724150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140909120000\",\n        \"createdDate\": \"20140723175005\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53d12552.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200107\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140725150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150812120000\",\n        \"createdDate\": \"20140724112506\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53d17117.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200108\",\n        \"jobName\": \"Funny Card Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Funny Card\",\n        \"projIndex\": \"Project_53d170cc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140725150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140909120000\",\n        \"createdDate\": \"20140724164823\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53d17377.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200109\",\n        \"jobName\": \"Valencia Brochure 2\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"6\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140725150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141002135020\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141006135027\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141008170044\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20141002135020\",\n        \"proofPlannedDate\": \"20141006135027\",\n        \"deliverPlannedDate\": \"20141008170044\",\n        \"orderDate\": \"20140213144745\",\n        \"compDate\": \"20141002120000\",\n        \"createdDate\": \"20140724165831\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"3q423423432423q\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140213144745\",\n        \"orderSentDate\": \"20140213145035\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53d176fb.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200110\",\n        \"jobName\": \"T-Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140725150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141017120000\",\n        \"createdDate\": \"20140724171331\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53dbaf33.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200111\",\n        \"jobName\": \"iBrand Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"iBrand Brochure Project\",\n        \"projIndex\": \"Project_53dbaf64.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140804150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140810111811\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140812111807\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140813111753\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140810111811\",\n        \"proofPlannedDate\": \"20140812111807\",\n        \"deliverPlannedDate\": \"20140813111753\",\n        \"orderDate\": \"20140801114843\",\n        \"compDate\": \"20140821120000\",\n        \"createdDate\": \"20140801111603\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53dbaf33.PRJ53dbb16b\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200111\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140801114843\",\n        \"orderSentDate\": \"20140801115003\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"766.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53dbbac2.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200112\",\n        \"jobName\": \"[Copy ] \",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140804150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141001120000\",\n        \"createdDate\": \"20140801120522\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53dbbafa.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200113\",\n        \"jobName\": \"[Copy ] \",\n        \"custName\": \"TEST\",\n        \"custIndex\": \"53dbbb0d\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140804150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140909120000\",\n        \"createdDate\": \"20140801120618\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53dbbafa.PRJ53dbbb53\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140724170754\",\n        \"orderSentDate\": \"20140724171223\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53e925ed.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"Template\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140812150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140918120000\",\n        \"createdDate\": \"20140811162205\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53e926c3.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00200115\",\n        \"jobName\": \"[Copy ] \",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140812150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20140811162539\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"53f5f735.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200116\",\n        \"jobName\": \"Classic Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Classic Project\",\n        \"projIndex\": \"Project_53f5f77d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140822150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140825094401\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140827094405\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140829094408\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140825094401\",\n        \"proofPlannedDate\": \"20140827094405\",\n        \"deliverPlannedDate\": \"20140829094408\",\n        \"orderDate\": \"20140821101145\",\n        \"compDate\": \"20140905120000\",\n        \"createdDate\": \"20140821094213\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"53f5f735.PRJ53f5f92a\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200116\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140821101145\",\n        \"orderSentDate\": \"20140821101247\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5408a19a.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200117\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"Natick Project\",\n        \"projIndex\": \"Project_5408a1be.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140905150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150812120000\",\n        \"createdDate\": \"20140904133002\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"*\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5409f6b4.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200118\",\n        \"jobName\": \"Armstrong Brochure\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"Armstrong Brochure\",\n        \"projIndex\": \"Project_5409f97f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140908150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140909134620\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140910134624\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140912134627\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140909134620\",\n        \"proofPlannedDate\": \"20140910134624\",\n        \"deliverPlannedDate\": \"20140912134627\",\n        \"orderDate\": \"20140905140938\",\n        \"compDate\": \"20140909120000\",\n        \"createdDate\": \"20140905134524\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5409f6b4.PRJ5409f870\",\n        \"ordQuant\": \"225\",\n        \"ordPrice\": \"2250.0\",\n        \"ordNum\": \"00200118\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140905140938\",\n        \"orderSentDate\": \"20140905141022\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"672.9167\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5409ff01.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200119\",\n        \"jobName\": \"[Copy ] Classic Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140908150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20140909120000\",\n        \"createdDate\": \"20140905142049\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140821101145\",\n        \"orderSentDate\": \"20140821101247\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"540f073d.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200120\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140910150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150812120000\",\n        \"createdDate\": \"20140909095717\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"540f1ca4.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200121\",\n        \"jobName\": \"CBSedge Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"CBSedge Project\",\n        \"projIndex\": \"Project_540f2176.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140910150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140911112958\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140915113002\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140919113005\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140911112958\",\n        \"proofPlannedDate\": \"20140915113002\",\n        \"deliverPlannedDate\": \"20140919113005\",\n        \"orderDate\": \"20140909120029\",\n        \"compDate\": \"20140909120000\",\n        \"createdDate\": \"20140909112836\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"540f1ca4.PRJ540f1f04\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200121\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140909120029\",\n        \"orderSentDate\": \"20140909120403\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"540f26ff.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200122\",\n        \"jobName\": \"P3SOF-0012\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140910150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20140911121345\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140916121350\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140919121354\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150812120000\",\n        \"createdDate\": \"20140909121247\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"*\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"540f28ad.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200123\",\n        \"jobName\": \"CCC Manual\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141007150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141009134811\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141013134817\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141017134822\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141105120000\",\n        \"createdDate\": \"20140909121957\",\n        \"numBidders\": \"10\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130723174139\",\n        \"orderSentDate\": \"20130723174318\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"540f7519.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200124\",\n        \"jobName\": \"BauerNZ Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"BauerNZ Project\",\n        \"projIndex\": \"Project_540f7cc9.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140910150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140924174854\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141006174851\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141009174846\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140910174854\",\n        \"proofPlannedDate\": \"20140911174851\",\n        \"deliverPlannedDate\": \"20140912174846\",\n        \"orderDate\": \"20140909184950\",\n        \"compDate\": \"20141017120000\",\n        \"createdDate\": \"20140909174601\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"540f7519.PRJ540f77ef\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200124\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140909184950\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"833.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"540f8570.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200125\",\n        \"jobName\": \"CBS Brochure2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140910150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141006134923\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141007185724\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141010185719\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20141006134923\",\n        \"proofPlannedDate\": \"20141007185724\",\n        \"deliverPlannedDate\": \"20141010185719\",\n        \"orderDate\": \"20140916104007\",\n        \"compDate\": \"20150107120000\",\n        \"createdDate\": \"20140909185544\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"540f8570.PRJ540f8572\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1000.0\",\n        \"ordNum\": \"1000000\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140909120029\",\n        \"orderSentDate\": \"20140909120403\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"540f99b1.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200126\",\n        \"jobName\": \"[Copy ] Hallmark Training Brochure-Book 2\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140910150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141002120000\",\n        \"createdDate\": \"20140909202209\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140604115353\",\n        \"orderSentDate\": \"20140604115505\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5410a79b.PRJ\",\n        \"lastMod\": \"1557218844\",\n        \"jobNumber\": \"00200128\",\n        \"jobName\": \"MERK-2344\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"MERK-2344\",\n        \"projIndex\": \"Project_54ac1a09.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140911150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140912153503\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140916153508\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20140919000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140912153503\",\n        \"proofPlannedDate\": \"20140916153508\",\n        \"deliverPlannedDate\": \"20140919000000\",\n        \"orderDate\": \"20140910155528\",\n        \"compDate\": \"20160808120000\",\n        \"createdDate\": \"20140910153347\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5410a79b.PRJ5410a9e2\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2700.0\",\n        \"ordNum\": \"3434\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20140910155528\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"550.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54133726.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00200130\",\n        \"jobName\": \"BIGGIE Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"BIGGIE Brochure Project\",\n        \"projIndex\": \"Project_541337bf.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140915140000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20140915141442\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20140917141447\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141126141450\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20140915141442\",\n        \"proofPlannedDate\": \"20140917141447\",\n        \"deliverPlannedDate\": \"20141126141450\",\n        \"orderDate\": \"20141118123537\",\n        \"compDate\": \"20141202120000\",\n        \"createdDate\": \"20140912141046\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54133726.PRJ54133ac2\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00200130\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20141118123537\",\n        \"orderSentDate\": \"20141118123546\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1333.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54133ea0.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00200131\",\n        \"jobName\": \"[Copy ] BIGGIE Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140915150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141002120000\",\n        \"createdDate\": \"20140912144240\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"542c51ea.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020014\",\n        \"jobName\": \"Pier1 Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141002150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141007151353\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141008151356\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141010151358\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20141007151353\",\n        \"proofPlannedDate\": \"20141008151356\",\n        \"deliverPlannedDate\": \"20141010151358\",\n        \"orderDate\": \"20141001153316\",\n        \"compDate\": \"20141001120000\",\n        \"createdDate\": \"20141001151138\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"542c51ea.PRJ542c54e0\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"325.0\",\n        \"ordNum\": \"00020014\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20141001153316\",\n        \"orderSentDate\": \"20141001153334\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"116.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"542c57f9.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020015\",\n        \"jobName\": \"Pier Brochure v.2\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141002150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141114120000\",\n        \"createdDate\": \"20141001153729\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141001153316\",\n        \"orderSentDate\": \"20141001153334\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"542c589f.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020016\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20140916150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141017120000\",\n        \"createdDate\": \"20141001154015\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"542c59c7.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020017\",\n        \"jobName\": \"CDSedge Brochure2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141002130000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141113171109\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20141113171109\",\n        \"orderDate\": \"20141201155957\",\n        \"compDate\": \"20141201120000\",\n        \"createdDate\": \"20141001154511\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"542c59c7.PRJ545aa14d\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00020017\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20140909120029\",\n        \"orderSentDate\": \"20140909120403\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1900.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5436dd47.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020018\",\n        \"jobName\": \"CDSedge Brochure\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"CBSedge Brochure2 Project\",\n        \"projIndex\": \"Project_5436dd77.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141010150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141013151021\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141014151025\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141013151031\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20141110151021\",\n        \"proofPlannedDate\": \"20141118151025\",\n        \"deliverPlannedDate\": \"20141125151031\",\n        \"orderDate\": \"20141009153453\",\n        \"compDate\": \"20141009120000\",\n        \"createdDate\": \"20141009150855\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5436dd47.PRJ5436dee5\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"325.0\",\n        \"ordNum\": \"00020018\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20141009153453\",\n        \"orderSentDate\": \"20141009153553\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"150.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5436e438.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00020019\",\n        \"jobName\": \"[Copy ]  CBSedge Brochure2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141010150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20141009153832\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140909120029\",\n        \"orderSentDate\": \"20140909120403\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5436e5d5.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020020\",\n        \"jobName\": \"Jacket\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Jacket\",\n        \"projIndex\": \"Project_5436e6cc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141010150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150107120000\",\n        \"createdDate\": \"20141009154525\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5436e701.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020021\",\n        \"jobName\": \"Jacket embroidery\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Jacket\",\n        \"projIndex\": \"Project_5436e6cc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141010150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141016155037\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160223120000\",\n        \"createdDate\": \"20141009155025\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5436e7e1.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020022\",\n        \"jobName\": \"sfsfs\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"\",\n        \"projIndex\": \"Project_5436e7c5.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141010150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141105120000\",\n        \"createdDate\": \"20141009155409\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5441365b.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020024\",\n        \"jobName\": \"Stickers Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Stickers Brochure Project\",\n        \"projIndex\": \"Project_54413744.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141020150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141020113559\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141021113602\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141024113606\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20141020113559\",\n        \"proofPlannedDate\": \"20141021113602\",\n        \"deliverPlannedDate\": \"20141024113606\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150515120000\",\n        \"createdDate\": \"20141017113139\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5441365b.PRJ54413971\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"300.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141017122102\",\n        \"orderSentDate\": \"20141017122203\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54414721.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00020025\",\n        \"jobName\": \"[Copy ] Stickers Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141020150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20141017124313\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141017122102\",\n        \"orderSentDate\": \"20141017122203\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5441620d.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020026\",\n        \"jobName\": \"Pier Posters\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Pier 1 Posters Project\",\n        \"projIndex\": \"Project_5441648d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141020150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141021143900\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20141021143900\",\n        \"orderDate\": \"20141017145330\",\n        \"compDate\": \"20141017120000\",\n        \"createdDate\": \"20141017143805\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5441620d.PRJ544162c1\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"300.0\",\n        \"ordNum\": \"00020026\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20141017145330\",\n        \"orderSentDate\": \"20141017145450\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"216.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5441668d.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00020027\",\n        \"jobName\": \"[Copy ] Pier 1 Posters\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141020150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20141017145717\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141017145330\",\n        \"orderSentDate\": \"20141017145450\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"544c5b99.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00020029\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141027180000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20141025222529\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"544fc30b.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020030\",\n        \"jobName\": \"Yebo POP Print\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Yebo POP\",\n        \"projIndex\": \"Project_544fc2ab.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141029150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141030131103\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20141030131103\",\n        \"orderDate\": \"20141028133937\",\n        \"compDate\": \"20141028120000\",\n        \"createdDate\": \"20141028122339\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"544fc30b.PRJ544fcf32\",\n        \"ordQuant\": \"1800\",\n        \"ordPrice\": \"200.0\",\n        \"ordNum\": \"00020030\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20141028133937\",\n        \"orderSentDate\": \"20141028134207\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"544fd83b.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020032\",\n        \"jobName\": \"Zebo POP Print\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141029150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141114120000\",\n        \"createdDate\": \"20141028135403\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141028133937\",\n        \"orderSentDate\": \"20141028134207\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5450fd93.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020033\",\n        \"jobName\": \"Integra Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Intygra Brochure Project\",\n        \"projIndex\": \"Project_545100ad.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141030150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141030104646\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141030104649\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141031104651\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20141030104646\",\n        \"proofPlannedDate\": \"20141030104649\",\n        \"deliverPlannedDate\": \"20141031104651\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141029120000\",\n        \"createdDate\": \"20141029104539\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5450fd93.PRJ5450fef6\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00020033\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141029111028\",\n        \"orderSentDate\": \"20141029111118\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1066.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"545104bd.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020034\",\n        \"jobName\": \"Integra Launch Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141030150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141114120000\",\n        \"createdDate\": \"20141029111613\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141029111028\",\n        \"orderSentDate\": \"20141029111118\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"545a91b9.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020035\",\n        \"jobName\": \"Xenon POP\",\n        \"custName\": \"Service Net - Pacific - Sam Moulton\",\n        \"custIndex\": \"53078800\",\n        \"projName\": \"Xenon Project\",\n        \"projIndex\": \"Project_545a921a.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141106150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141111161005\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141113161009\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141121161013\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20141111161005\",\n        \"proofPlannedDate\": \"20141113161009\",\n        \"deliverPlannedDate\": \"20141121161013\",\n        \"orderDate\": \"20141114110016\",\n        \"compDate\": \"20150720120000\",\n        \"createdDate\": \"20141105160809\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"545a91b9.PRJ545a956a\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"8250.0\",\n        \"ordNum\": \"00020035\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20141114110016\",\n        \"orderSentDate\": \"20141114110120\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1331.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"545aa5a8.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020036\",\n        \"jobName\": \"[Copy ] PDF-5914-1\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141106150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141114120000\",\n        \"createdDate\": \"20141105173312\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140509135237\",\n        \"orderSentDate\": \"20140509135332\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"546e2f71.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020037\",\n        \"jobName\": \"Red Cross Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141121150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141123131511\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141124131506\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141128131501\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20141123131511\",\n        \"proofPlannedDate\": \"20141124131506\",\n        \"deliverPlannedDate\": \"20141128131501\",\n        \"orderDate\": \"20141120132928\",\n        \"compDate\": \"20141120120000\",\n        \"createdDate\": \"20141120131409\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"546e2f71.PRJ546e308b\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00020037\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20141120132928\",\n        \"orderSentDate\": \"20141120133018\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"546e33ec.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020038\",\n        \"jobName\": \"Red Cross Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Red Cross Project2\",\n        \"projIndex\": \"Project_56014090.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141221150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141222112052\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141223112100\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141230112044\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160223120000\",\n        \"createdDate\": \"20141120133316\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141120132928\",\n        \"orderSentDate\": \"20141120133018\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"547cc951.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020039\",\n        \"jobName\": \"Service Manual - 12 pg\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150225120000\",\n        \"createdDate\": \"20141201150225\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"547cc951.PRJ547cc953\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"547cd8b0.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020040\",\n        \"jobName\": \"[Copy ] Service Manual - 16 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141202150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141202120000\",\n        \"createdDate\": \"20141201160800\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"547f7855.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020041\",\n        \"jobName\": \"Video Series Brochure 4\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Video Series Brochure 4\",\n        \"projIndex\": \"Project_547f82ec.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141203155342\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20141211153832\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20141212153836\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141229153842\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20141211153832\",\n        \"proofPlannedDate\": \"20141212153836\",\n        \"deliverPlannedDate\": \"20141229153842\",\n        \"orderDate\": \"20150111122757\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20141203155341\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"5\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"547f7855.PRJ547f7858\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"5235.0\",\n        \"ordNum\": \"00020041\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20141204210416\",\n        \"orderSentDate\": \"20141204210628\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1732.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54810d4a.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020042\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141205150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141223120000\",\n        \"createdDate\": \"20141204204130\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54810d6b.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020043\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141205150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20141223120000\",\n        \"createdDate\": \"20141204204203\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54811f76.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020044\",\n        \"jobName\": \"[Copy ] Utah Brochure v.2\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141205150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150107120000\",\n        \"createdDate\": \"20141204215902\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141118115936\",\n        \"orderSentDate\": \"20141118115947\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"549992d2.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020045\",\n        \"jobName\": \"Philips Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141224150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20141230110750\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20141230110750\",\n        \"orderDate\": \"20150120151032\",\n        \"compDate\": \"20150120120000\",\n        \"createdDate\": \"20141223110538\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"549992d2.PRJ54999541\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"4000000.0\",\n        \"ordNum\": \"PL52523523523\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20141223114013\",\n        \"orderSentDate\": \"20141223114237\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-3996666.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54999cdf.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020046\",\n        \"jobName\": \"[Copy ] Utah Brochure v.2\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20141224150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150107120000\",\n        \"createdDate\": \"20141223114831\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141118115936\",\n        \"orderSentDate\": \"20141118115947\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ad4bd6.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020048\",\n        \"jobName\": \"T-Toll Bros Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150108150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20150109101351\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150112101355\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150115101358\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150120120000\",\n        \"createdDate\": \"20150107100806\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ad4ecf.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020049\",\n        \"jobName\": \" T-Toll Bros Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150108150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150107104110\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150107104110\",\n        \"orderDate\": \"20150107104149\",\n        \"compDate\": \"20150202120000\",\n        \"createdDate\": \"20150107102047\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54ad4ecf.PRJ54ad4f0b\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"4000000.0\",\n        \"ordNum\": \"00020049\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150107104149\",\n        \"orderSentDate\": \"20150107104308\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-3995500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ad55c4.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020050\",\n        \"jobName\": \"Service Manual - 16 pg\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150114105037\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20150107105028\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54ad55c4.PRJ54ad55c5\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"800.00\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"416.25\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54b8186f.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020051\",\n        \"jobName\": \"Bacher Test\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"Bacher Test Project\",\n        \"projIndex\": \"Project_54d2ec7e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150116150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150116144441\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150116144441\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150515120000\",\n        \"createdDate\": \"20150115144343\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54b8186f.PRJ54b818e1\",\n        \"ordQuant\": \"100\",\n        \"ordPrice\": \"1000.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150303184359\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-985.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54b81b46.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00020052\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150116150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20150115145550\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54b81ea1.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020053\",\n        \"jobName\": \"Bacher Poster\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150116150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20150115151009\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54be9b33.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020054\",\n        \"jobName\": \"UUtah Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150121150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150125131643\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150126131641\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150128131636\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150125131643\",\n        \"proofPlannedDate\": \"20150126131641\",\n        \"deliverPlannedDate\": \"20150128131636\",\n        \"orderDate\": \"20150120132942\",\n        \"compDate\": \"20150120120000\",\n        \"createdDate\": \"20150120131515\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54be9b33.PRJ54be9c93\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00020054\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150120132942\",\n        \"orderSentDate\": \"20150120133031\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1066.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54bea411.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020055\",\n        \"jobName\": \"[Copy ] UUtah Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150121150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150129120000\",\n        \"createdDate\": \"20150120135305\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150120132942\",\n        \"orderSentDate\": \"20150120133031\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54beb08c.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020056\",\n        \"jobName\": \"Phillips Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150121140000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150121144800\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150122144804\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150129144806\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150121144800\",\n        \"proofPlannedDate\": \"20150122144804\",\n        \"deliverPlannedDate\": \"20150129144806\",\n        \"orderDate\": \"20150204231413\",\n        \"compDate\": \"20150204120000\",\n        \"createdDate\": \"20150120144620\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54beb08c.PRJ54beb2aa\",\n        \"ordQuant\": \"2500\",\n        \"ordPrice\": \"2500.0\",\n        \"ordNum\": \"00020056\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150120150643\",\n        \"orderSentDate\": \"20150120150734\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1155.5556\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54beb880.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00020057\",\n        \"jobName\": \"[Copy ] Phillips Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150121150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20150120152016\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150120150643\",\n        \"orderSentDate\": \"20150120150734\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54c91788.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020059\",\n        \"jobName\": \"QL Brochure\",\n        \"custName\": \"Alliance Publishing & Marketing, Inc. - \",\n        \"custIndex\": \"53078802\",\n        \"projName\": \"QL Brochure\",\n        \"projIndex\": \"Project_54c91710.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150128150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150128121023\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150129121021\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150130121017\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150128121023\",\n        \"proofPlannedDate\": \"20150129121021\",\n        \"deliverPlannedDate\": \"20150130121017\",\n        \"orderDate\": \"20150128130319\",\n        \"compDate\": \"20150901120000\",\n        \"createdDate\": \"20150128120824\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54c91788.PRJ54c91b06\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"00020059\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150128130319\",\n        \"orderSentDate\": \"20150128130437\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54c9256f.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020059\",\n        \"jobName\": \"QL Envelope\",\n        \"custName\": \"Alliance Publishing & Marketing, Inc. - \",\n        \"custIndex\": \"53078802\",\n        \"projName\": \"QL Brochure\",\n        \"projIndex\": \"Project_54c91710.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150129150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150211181451\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150727120000\",\n        \"createdDate\": \"20150128130743\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54c926c5.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00020060\",\n        \"jobName\": \" Video Brochures6\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150129150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20150128131325\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54c92ed7.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020061\",\n        \"jobName\": \"Philips Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150129100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150129135024\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150130135031\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150131135034\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150129135024\",\n        \"proofPlannedDate\": \"20150130135031\",\n        \"deliverPlannedDate\": \"20150131135034\",\n        \"orderDate\": \"20150128141155\",\n        \"compDate\": \"20150128120000\",\n        \"createdDate\": \"20150128134751\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54c92ed7.PRJ54c93276\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00020061\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150128141155\",\n        \"orderSentDate\": \"20150128141239\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"666.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54c934bd.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00020062\",\n        \"jobName\": \"MultiItem\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150129150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150130141412\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20150128141301\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54c934bd.PRJ54c935c9\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54c9373d.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020063\",\n        \"jobName\": \"[Copy ] Philips Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150129150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150129120000\",\n        \"createdDate\": \"20150128142341\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150128141155\",\n        \"orderSentDate\": \"20150128141239\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54c937af.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020064\",\n        \"jobName\": \"[Copy 1] Philips Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150129150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150129120000\",\n        \"createdDate\": \"20150128142535\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150128141155\",\n        \"orderSentDate\": \"20150128141239\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54cfebde.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020065\",\n        \"jobName\": \"[Copy ] Stickers Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150203150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150202120000\",\n        \"createdDate\": \"20150202162758\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141017122102\",\n        \"orderSentDate\": \"20141017122203\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d00d46.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00020066\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150203150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20150202185030\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d0e790.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020067-1\",\n        \"jobName\": \"PMN Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"PMN Project\",\n        \"projIndex\": \"Project_54d0e74e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150204130000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150205102212\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150209102215\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150213102218\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150205102212\",\n        \"proofPlannedDate\": \"20150209102215\",\n        \"deliverPlannedDate\": \"20150213102218\",\n        \"orderDate\": \"20150720103520\",\n        \"compDate\": \"20151030120000\",\n        \"createdDate\": \"20150203102152\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54d0e790.PRJ54d0eb2e\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00020067 ABC\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150203113159\",\n        \"orderSentDate\": \"20150203113354\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d0e7fc.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020067-2\",\n        \"jobName\": \"PMN Envelope\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"PMN Project\",\n        \"projIndex\": \"Project_54d0e74e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150204150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150515120000\",\n        \"createdDate\": \"20150203102340\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54d0e7fc.PRJ54d0f091\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"3500.0\",\n        \"ordNum\": \"00020068\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d0fa2c.PRJ\",\n        \"lastMod\": \"1557218845\",\n        \"jobNumber\": \"00020069\",\n        \"jobName\": \"QL Envelope v.2\",\n        \"custName\": \"Alliance Publishing & Marketing, Inc. - \",\n        \"custIndex\": \"53078802\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"6\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150204150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20150203114116\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d23800.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020070\",\n        \"jobName\": \"Intygra Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Intygra Project\",\n        \"projIndex\": \"Project_54d237be.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150205100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150210101742\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150210101742\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150204120000\",\n        \"createdDate\": \"20150204101720\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54d23800.PRJ54d23bc7\",\n        \"ordQuant\": \"7000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00020070\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150204110759\",\n        \"orderSentDate\": \"20150204110918\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"7543.1746\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d244fd.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020071\",\n        \"jobName\": \"[Copy ] Pier Posters\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150205150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150206120000\",\n        \"createdDate\": \"20150204111245\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141017145330\",\n        \"orderSentDate\": \"20141017145450\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d249b5.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00020072\",\n        \"jobName\": \"Int\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150205150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20150204113253\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d249cf.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020073\",\n        \"jobName\": \"[Copy ] Intygra Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150205150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150206120000\",\n        \"createdDate\": \"20150204113319\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150204110759\",\n        \"orderSentDate\": \"20150204110918\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d2eb40.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00020074\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150205150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20150204230208\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d2ef4a.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020075\",\n        \"jobName\": \"[Copy ] Xenon POP\",\n        \"custName\": \"Service Net - Pacific - Sam Moulton\",\n        \"custIndex\": \"53078800\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150205150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150206120000\",\n        \"createdDate\": \"20150204231922\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141114110016\",\n        \"orderSentDate\": \"20141114110120\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d3c6ee.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020076\",\n        \"jobName\": \"Danish Gov. Brochure\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"Danish Gov. Brochure Project\",\n        \"projIndex\": \"Project_558184c9.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150206150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150619000000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150624102828\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150626102831\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150619000000\",\n        \"proofPlannedDate\": \"20150624102828\",\n        \"deliverPlannedDate\": \"20150626102831\",\n        \"orderDate\": \"20150911082659\",\n        \"compDate\": \"20181018120000\",\n        \"createdDate\": \"20150205143926\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54d3c6ee.PRJ5581844b\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3200.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20150911082659\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"133.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d4e55a.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020086\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150209150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150206120000\",\n        \"createdDate\": \"20150206110130\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d4ef19.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020087\",\n        \"jobName\": \"Novitex Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Novitex Project\",\n        \"projIndex\": \"Project_54d4f210.xml\",\n        \"itemIndex\": \"54d4f200\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150209150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150210114353\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150212114355\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150219114358\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150210114353\",\n        \"proofPlannedDate\": \"20150212114355\",\n        \"deliverPlannedDate\": \"20150219114358\",\n        \"orderDate\": \"20150206120339\",\n        \"compDate\": \"20150206120000\",\n        \"createdDate\": \"20150206114305\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54d4ef19.PRJ54d4f0e6\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00020087\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150206120339\",\n        \"orderSentDate\": \"20150206120459\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"750.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d4f4fc.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020088\",\n        \"jobName\": \" Novitex Brochure v2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"54d4f200\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150209150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150303120000\",\n        \"createdDate\": \"20150206120812\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54d4f4fc.PRJ54ec8889\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"800.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150206120339\",\n        \"orderSentDate\": \"20150206120459\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54d974ec.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020089\",\n        \"jobName\": \"Multi-item\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Multi-item\",\n        \"projIndex\": \"Project_54d97655.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150210150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150217220343\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150727120000\",\n        \"createdDate\": \"20150209220308\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54dd0b4f.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020090\",\n        \"jobName\": \"Mega Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Mega Project\",\n        \"projIndex\": \"Project_54dd0b04.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150213150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150218153816\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150218153816\",\n        \"orderDate\": \"20150212160243\",\n        \"compDate\": \"20150212120000\",\n        \"createdDate\": \"20150212152135\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54dd0b4f.PRJ54dd104c\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00020090\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150212160022\",\n        \"orderSentDate\": \"20150212160100\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1066.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54dd17a8.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020091\",\n        \"jobName\": \"[Copy ] Mega Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150213150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20150212161416\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150212160022\",\n        \"orderSentDate\": \"20150212160100\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54de29f5.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020092\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150216150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150529000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150529000000\",\n        \"orderDate\": \"20150522091747\",\n        \"compDate\": \"20150522120000\",\n        \"createdDate\": \"20150213114437\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54de29f5.PRJ54de2b21\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"3000.0\",\n        \"ordNum\": \"1212\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20150522091747\",\n        \"orderSentDate\": \"20150522091810\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54e4fbc2.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020093\",\n        \"jobName\": \"BIG Manual\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150219150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150220155537\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150223155544\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150227155549\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160223120000\",\n        \"createdDate\": \"20150218155322\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54e617d3.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020094\",\n        \"jobName\": \"Utah Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150220150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150220120730\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150224120735\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150226120738\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150220120730\",\n        \"proofPlannedDate\": \"20150224120735\",\n        \"deliverPlannedDate\": \"20150226120738\",\n        \"orderDate\": \"20150219123034\",\n        \"compDate\": \"20160805120000\",\n        \"createdDate\": \"20150219120523\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54e617d3.PRJ54e61895\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"12111\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20150219123034\",\n        \"orderSentDate\": \"20150219123117\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"50.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ec8b01.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020096\",\n        \"jobName\": \"[Copy ] Service Manual - 12 pg\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150225150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20150224093025\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ee019b.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020097\",\n        \"jobName\": \"APP Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"APP Brochure Project\",\n        \"projIndex\": \"Project_54ee0657.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150226150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150226121014\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150227121017\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150228121019\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150226121014\",\n        \"proofPlannedDate\": \"20150227121017\",\n        \"deliverPlannedDate\": \"20150228121019\",\n        \"orderDate\": \"20150317144828\",\n        \"compDate\": \"20150225120000\",\n        \"createdDate\": \"20150225120843\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54ee019b.PRJ54ee04ab\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00020097\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150225124532\",\n        \"orderSentDate\": \"20150225124543\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ee0799.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020098\",\n        \"jobName\": \"APP Brochure 2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150226150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150303120000\",\n        \"createdDate\": \"20150225123417\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ee0b35.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020099\",\n        \"jobName\": \"Service Manual - 20 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20150225124941\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54ee0b35.PRJ54ee0b37\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"820.0\",\n        \"ordNum\": \"00020099\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"418.75\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ee2e10.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020100\",\n        \"jobName\": \"CACU Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150226130000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150226152102\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150227152105\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150228152109\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150226152102\",\n        \"proofPlannedDate\": \"20150227152105\",\n        \"deliverPlannedDate\": \"20150228152109\",\n        \"orderDate\": \"20150225154737\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20150225151824\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54ee2e10.PRJ54ee3251\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00020100\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150225154737\",\n        \"orderSentDate\": \"20150225154832\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ee3694.PRJ\",\n        \"lastMod\": \"DELETED\",\n        \"jobNumber\": \"00020101\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150226150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20150225155444\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ee381c.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020102\",\n        \"jobName\": \"[Copy ] Video Series Brochure 3\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150226150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150311153509\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150311153509\",\n        \"orderDate\": \"20150310153719\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20150225160116\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54ee381c.PRJ54ff474a\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"10.0\",\n        \"ordNum\": \"00020102\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150310153545\",\n        \"orderSentDate\": \"20150310153655\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54f6324c.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020103\",\n        \"jobName\": \"Verve Catalog\",\n        \"custName\": \"Alpha Sales - Jennifer Sweet\",\n        \"custIndex\": \"4b2656fa\",\n        \"projName\": \"Verve Catalog Project\",\n        \"projIndex\": \"Project_54f63d01.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150304150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150305171929\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150311171932\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150320171935\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150305171929\",\n        \"proofPlannedDate\": \"20150311171932\",\n        \"deliverPlannedDate\": \"20150320171935\",\n        \"orderDate\": \"20150303182720\",\n        \"compDate\": \"20150303120000\",\n        \"createdDate\": \"20150303171436\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54f6324c.PRJ54f6388d\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"00020103\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150303182556\",\n        \"orderSentDate\": \"20150303182644\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1833.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54f647fa.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020104\",\n        \"jobName\": \"[Copy ] Unicef\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150304150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20150303184706\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20131108120212\",\n        \"orderSentDate\": \"20131108120328\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ff495c.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020105\",\n        \"jobName\": \"Spring Sign up brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Spring Sign Up\",\n        \"projIndex\": \"Project_54ff492e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150311150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20150310154324\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ff4976.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020106\",\n        \"jobName\": \"Spring Sign Up Envelope\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Spring Sign Up\",\n        \"projIndex\": \"Project_54ff492e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150311150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150515120000\",\n        \"createdDate\": \"20150310154350\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ff4b65.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020107\",\n        \"jobName\": \"Service Manual - 16 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150318155218\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150318155218\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20150310155205\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54ff4b65.PRJ54ff4b67\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"520.0\",\n        \"ordNum\": \"00020107\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"180.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ff4cfb.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020108\",\n        \"jobName\": \"Buckslip\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150311150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150318161454\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150318161454\",\n        \"orderDate\": \"20150310161808\",\n        \"compDate\": \"20150528120000\",\n        \"createdDate\": \"20150310155851\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54ff4cfb.PRJ54ff4ffe\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"00020108\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150310161808\",\n        \"orderSentDate\": \"20150310161850\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"54ff51f7.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020109\",\n        \"jobName\": \"[Copy ] Buckslip\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150311150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150325162018\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150325162018\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150323120000\",\n        \"createdDate\": \"20150310162007\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"54ff51f7.PRJ54ff51fa\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150310161808\",\n        \"orderSentDate\": \"20150310161850\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55087839.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020110\",\n        \"jobName\": \"APP Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"APP Brochure Project\",\n        \"projIndex\": \"Project_54ee0657.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150318150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20150317145345\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150225124532\",\n        \"orderSentDate\": \"20150225124543\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55103201.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"00020111\",\n        \"jobName\": \"APP Brochure-2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"APP-2 Project\",\n        \"projIndex\": \"Project_5510325f.xml\",\n        \"itemIndex\": \"5405207a\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150324150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150325113312\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150326113316\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150331113319\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150325113312\",\n        \"proofPlannedDate\": \"20150326113316\",\n        \"deliverPlannedDate\": \"20150331113319\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150720120000\",\n        \"createdDate\": \"20150323113217\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55103201.PRJ551032c8\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"1200.0\",\n        \"ordNum\": \"00020111\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150225124532\",\n        \"orderSentDate\": \"20150225124543\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"566.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55104470.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20112\",\n        \"jobName\": \"[Copy ] APP Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150324150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150526120000\",\n        \"createdDate\": \"20150323125056\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150225124532\",\n        \"orderSentDate\": \"20150225124543\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"552d5a93.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20113\",\n        \"jobName\": \"Hip Labels Brochure\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"Hip Labels Project\",\n        \"projIndex\": \"Project_552d5c77.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150415150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150416142307\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150421142310\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150417142316\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150727120000\",\n        \"createdDate\": \"20150414142107\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"552d5e28.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20114\",\n        \"jobName\": \"Hip label Stakes\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150415150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150727120000\",\n        \"createdDate\": \"20150414143624\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"552d67a1.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20115\",\n        \"jobName\": \"[Copy ] Hip Labels Brochure\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150415150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150528120000\",\n        \"createdDate\": \"20150414151649\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"552e9f6c.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20116\",\n        \"jobName\": \"Testing Caleb\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150416150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150526120000\",\n        \"createdDate\": \"20150415132708\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"553e45a9.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20117\",\n        \"jobName\": \"Konsortium Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Konsortium Brochure Project\",\n        \"projIndex\": \"Project_553e45d5.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150428150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150428102135\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150429102138\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150430102140\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150428102135\",\n        \"proofPlannedDate\": \"20150429102138\",\n        \"deliverPlannedDate\": \"20150430102140\",\n        \"orderDate\": \"20150427105736\",\n        \"compDate\": \"20150526120000\",\n        \"createdDate\": \"20150427102025\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"553e45a9.PRJ553e4825\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20117\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150427105736\",\n        \"orderSentDate\": \"20150427105839\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1400.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55560cde.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20118\",\n        \"jobName\": \"Bancorp brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150518150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150518111352\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150520111356\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150528111359\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150518111352\",\n        \"proofPlannedDate\": \"20150520111356\",\n        \"deliverPlannedDate\": \"20150528111359\",\n        \"orderDate\": \"20150515113731\",\n        \"compDate\": \"20150515120000\",\n        \"createdDate\": \"20150515111230\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55560cde.PRJ55560f72\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20118\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150515113731\",\n        \"orderSentDate\": \"20150515113909\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"555614b0.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20119\",\n        \"jobName\": \"[Copy ] Bancorp brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150518150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150526120000\",\n        \"createdDate\": \"20150515114552\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150515113731\",\n        \"orderSentDate\": \"20150515113909\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55648d2b.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20120\",\n        \"jobName\": \"Big Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Big Brochure Project\",\n        \"projIndex\": \"Project_55648f93.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"11\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150527150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150528111251\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150529111254\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150531111256\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150528111251\",\n        \"proofPlannedDate\": \"20150529111254\",\n        \"deliverPlannedDate\": \"20150531111256\",\n        \"orderDate\": \"20150526113525\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20150526111139\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55648d2b.PRJ55648e65\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20120\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150526113525\",\n        \"orderSentDate\": \"20150526113622\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"750.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5564951e.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20121\",\n        \"jobName\": \"[Copy ] Konsortium Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150527150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150528120000\",\n        \"createdDate\": \"20150526114534\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150427105736\",\n        \"orderSentDate\": \"20150427105839\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5567591b.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20122\",\n        \"jobName\": \"Mats Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150529150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150615140811\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150618140814\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150625140816\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150529140811\",\n        \"proofPlannedDate\": \"20150530140814\",\n        \"deliverPlannedDate\": \"20150531140816\",\n        \"orderDate\": \"20150528142448\",\n        \"compDate\": \"20150720120000\",\n        \"createdDate\": \"20150528140619\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5567591b.PRJ55675ac7\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20122\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150528142448\",\n        \"orderSentDate\": \"20150528142617\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1233.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55675f50.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20123\",\n        \"jobName\": \"Buckslip\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"6\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150529150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20150528143248\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150310161808\",\n        \"orderSentDate\": \"20150310161850\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"556f07e0.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20124\",\n        \"jobName\": \"Paradigm Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Paradigm Brochure Project\",\n        \"projIndex\": \"Project_556f0cae.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150604130000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150610100315\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150610100332\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150612100336\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150610100315\",\n        \"proofPlannedDate\": \"20150610100332\",\n        \"deliverPlannedDate\": \"20150612100336\",\n        \"orderDate\": \"20150603103131\",\n        \"compDate\": \"20150603120000\",\n        \"createdDate\": \"20150603095752\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"556f07e0.PRJ556f0a5b\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20124\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150603103131\",\n        \"orderSentDate\": \"20150603103247\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"556f1070.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20125\",\n        \"jobName\": \"Paradigm Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150604150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150608120707\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150608120707\",\n        \"orderDate\": \"20150604120712\",\n        \"compDate\": \"20150716120000\",\n        \"createdDate\": \"20150603103424\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"556f1070.PRJ5570758d\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"20125\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150603103131\",\n        \"orderSentDate\": \"20150603103247\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1141.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5580245c.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20126\",\n        \"jobName\": \"Mitie Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Mitie Brochure Project\",\n        \"projIndex\": \"Project_55802494.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150617100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150618092923\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150622092926\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150626092929\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150618092923\",\n        \"proofPlannedDate\": \"20150622092926\",\n        \"deliverPlannedDate\": \"20150626092929\",\n        \"orderDate\": \"20150616101310\",\n        \"compDate\": \"20150616120000\",\n        \"createdDate\": \"20150616092756\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5580245c.PRJ55802639\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20126\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150616101310\",\n        \"orderSentDate\": \"20150616101513\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55803322.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20127\",\n        \"jobName\": \"Mitie Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Mitie Brochure Project2\",\n        \"projIndex\": \"Project_55a69b4e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150617150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150709104910\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150710104912\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150723104914\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150709104910\",\n        \"proofPlannedDate\": \"20150710104912\",\n        \"deliverPlannedDate\": \"20150723104914\",\n        \"orderDate\": \"20150715140235\",\n        \"compDate\": \"20150715120000\",\n        \"createdDate\": \"20150616103058\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55803322.PRJ55955048\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"20127\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150616101310\",\n        \"orderSentDate\": \"20150616101513\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5582fd0f.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20128\",\n        \"jobName\": \"Liberty Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150619150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150622131757\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150624131801\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150626131807\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150622131757\",\n        \"proofPlannedDate\": \"20150624131801\",\n        \"deliverPlannedDate\": \"20150626131807\",\n        \"orderDate\": \"20150618133956\",\n        \"compDate\": \"20150618120000\",\n        \"createdDate\": \"20150618131703\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5582fd0f.PRJ5582fe63\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20128\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150618133956\",\n        \"orderSentDate\": \"20150618134040\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"900.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55830599.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20129\",\n        \"jobName\": \"Liberty Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Liberty Project\",\n        \"projIndex\": \"Project_56059b7a.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150619150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20150618135329\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150618133956\",\n        \"orderSentDate\": \"20150618134040\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55830787.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20130\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150901120000\",\n        \"createdDate\": \"20150618140143\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55830787.PRJ55830788\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"1100.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"559e82df.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20133\",\n        \"jobName\": \"Astellas Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \" Astellas\",\n        \"projIndex\": \"Project_55a7d313.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150710090000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150714103658\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150722103701\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150723103655\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150714103658\",\n        \"proofPlannedDate\": \"20150722103701\",\n        \"deliverPlannedDate\": \"20150723103655\",\n        \"orderDate\": \"20150716120650\",\n        \"compDate\": \"20150720120000\",\n        \"createdDate\": \"20150709101911\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"559e82df.PRJ559e8938\",\n        \"ordQuant\": \"2500\",\n        \"ordPrice\": \"2500.0\",\n        \"ordNum\": \"20133\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150709111035\",\n        \"orderSentDate\": \"20150709111239\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"700.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"559e9293.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20135\",\n        \"jobName\": \"[Copy ] Astellas Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150710150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150813120000\",\n        \"createdDate\": \"20150709112611\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150709111035\",\n        \"orderSentDate\": \"20150709111239\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55a7efd3.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20136\",\n        \"jobName\": \"PI Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"PI Brochure\",\n        \"projIndex\": \"Project_55a7e4a7.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150717150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150718135441\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150720135443\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150724135446\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150718135441\",\n        \"proofPlannedDate\": \"20150720135443\",\n        \"deliverPlannedDate\": \"20150724135446\",\n        \"orderDate\": \"20150716142507\",\n        \"compDate\": \"20150720120000\",\n        \"createdDate\": \"20150716135427\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55a7efd3.PRJ55a7f188\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150716142507\",\n        \"orderSentDate\": \"20150716142609\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55a7f808.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20137\",\n        \"jobName\": \"Pier Posters\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150717150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20150716142928\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141017145330\",\n        \"orderSentDate\": \"20141017145450\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55a90257.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20138\",\n        \"jobName\": \"QTY Test\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"QTY Test Project\",\n        \"projIndex\": \"Project_55a9064c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150720100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150717094648\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150717094648\",\n        \"orderDate\": \"20150717094658\",\n        \"compDate\": \"20151030120000\",\n        \"createdDate\": \"20150717092543\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55a90257.PRJ55a90288\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"300.0\",\n        \"ordNum\": \"20138\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150717094658\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55a90795.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20139\",\n        \"jobName\": \"QTY2\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150720150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150717095528\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150717095528\",\n        \"orderDate\": \"20150717095539\",\n        \"compDate\": \"20150805120000\",\n        \"createdDate\": \"20150717094805\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55a90795.PRJ55a907f5\",\n        \"ordQuant\": \"300\",\n        \"ordPrice\": \"30.0\",\n        \"ordNum\": \"20139\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150717095539\",\n        \"orderSentDate\": \"20150717095548\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"10.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55acfdbb.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20140\",\n        \"jobName\": \"Mounted Panel\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Exhibition\",\n        \"projIndex\": \"Project_55acfd67.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150721150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150722095525\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150723095528\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150730095531\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151022120000\",\n        \"createdDate\": \"20150720095507\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55ad0306.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20141\",\n        \"jobName\": \"Astellas Results Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Astellas Results Brochure\",\n        \"projIndex\": \"Project_55b68f01.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150721150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150730152248\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150731152245\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20150917103802\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20150720101742\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55ad0306.PRJ55b6865f\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150709111035\",\n        \"orderSentDate\": \"20150709111239\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55ad189c.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20142\",\n        \"jobName\": \"July 2015\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150721150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151022120000\",\n        \"createdDate\": \"20150720114948\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55ad1a06.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20143\",\n        \"jobName\": \"Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"July 2015\",\n        \"projIndex\": \"Project_55ad19da.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150721150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150730115556\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150730115556\",\n        \"orderDate\": \"20150720122105\",\n        \"compDate\": \"20151030120000\",\n        \"createdDate\": \"20150720115550\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55ad1a06.PRJ55ad1b37\",\n        \"ordQuant\": \"19000\",\n        \"ordPrice\": \"1900.0\",\n        \"ordNum\": \"20143\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150720121933\",\n        \"orderSentDate\": \"20150720122201\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"977.7778\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55ad22e2.PRJ\",\n        \"lastMod\": \"1557218846\",\n        \"jobNumber\": \"20144\",\n        \"jobName\": \"[Copy ] PPG Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150721150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150813120000\",\n        \"createdDate\": \"20150720123338\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130827145935\",\n        \"orderSentDate\": \"20130827145958\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55b59ca0.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20145\",\n        \"jobName\": \"Patch Test 1\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150727150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150728225142\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150730225145\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150731225147\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150727120000\",\n        \"createdDate\": \"20150726225112\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55c21b32.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20146\",\n        \"jobName\": \"Mitie Manual\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Mitie Project\",\n        \"projIndex\": \"Project_55c21ae6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150806150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150810101929\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150812101933\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150821101935\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150810101929\",\n        \"proofPlannedDate\": \"20150812101933\",\n        \"deliverPlannedDate\": \"20150821101935\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20150805101826\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55c21b32.PRJ55c21d32\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"20146\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150805110438\",\n        \"orderSentDate\": \"20150805110746\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55c22854.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20147\",\n        \"jobName\": \"[Copy ] Mitie Manual\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150806150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150813120000\",\n        \"createdDate\": \"20150805111428\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150805110438\",\n        \"orderSentDate\": \"20150805110746\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55c22887.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20148\",\n        \"jobName\": \"[Copy ] Mitie Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \" Mitie Brochure Project\",\n        \"projIndex\": \"Project_55e5f2db.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150805111521\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150901120000\",\n        \"createdDate\": \"20150805111519\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55c22887.PRJ55c22889\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150616101310\",\n        \"orderSentDate\": \"20150616101513\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55ccff68.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20149\",\n        \"jobName\": \"TEST\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150814150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150901120000\",\n        \"createdDate\": \"20150813163448\",\n        \"numBidders\": \"7\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"*\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55e08206.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20150\",\n        \"jobName\": \"BRC Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"BRC Brochure Project\",\n        \"projIndex\": \"Project_55e08232.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150831150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150829114617\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150830114620\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150831114622\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150829114617\",\n        \"proofPlannedDate\": \"20150830114620\",\n        \"deliverPlannedDate\": \"20150831114622\",\n        \"orderDate\": \"20150828120759\",\n        \"compDate\": \"20150828120000\",\n        \"createdDate\": \"20150828114510\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55e08206.PRJ55e08356\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150828120759\",\n        \"orderSentDate\": \"20150828120938\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55e0895b.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20151\",\n        \"jobName\": \"[Copy ] BRC Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150831150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150901120000\",\n        \"createdDate\": \"20150828121627\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150828120759\",\n        \"orderSentDate\": \"20150828120938\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55e5eb4f.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20152\",\n        \"jobName\": \"Service Manual - 16 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20150901141750\",\n        \"compDate\": \"20151001120000\",\n        \"createdDate\": \"20150901141543\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55e5eb4f.PRJ55e5eb51\",\n        \"ordQuant\": \"12500\",\n        \"ordPrice\": \"1440.0\",\n        \"ordNum\": \"20152\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150901141642\",\n        \"orderSentDate\": \"20150901142005\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"378.75\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55e5edb8.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20153\",\n        \"jobName\": \"Cornerstone Brochure v2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150902150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150916142619\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150917142622\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150918142624\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150916142619\",\n        \"proofPlannedDate\": \"20150917142622\",\n        \"deliverPlannedDate\": \"20150918142624\",\n        \"orderDate\": \"20150901143408\",\n        \"compDate\": \"20150908120000\",\n        \"createdDate\": \"20150901142600\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55e5edb8.PRJ55e5edef\",\n        \"ordQuant\": \"100\",\n        \"ordPrice\": \"425.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20130912151003\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55e6308b.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20154\",\n        \"jobName\": \"CS Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"CS Brochure Project\",\n        \"projIndex\": \"Project_55e630ef.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150902140000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150902191351\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150903191354\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150909191356\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150902191351\",\n        \"proofPlannedDate\": \"20150903191354\",\n        \"deliverPlannedDate\": \"20150909191356\",\n        \"orderDate\": \"20150901194642\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20150901191107\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55e6308b.PRJ55e632b0\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"20154\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150901194642\",\n        \"orderSentDate\": \"20150901194821\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55e63b0e.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20155\",\n        \"jobName\": \"CS Brochure v2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150902150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151030120000\",\n        \"createdDate\": \"20150901195558\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150901194642\",\n        \"orderSentDate\": \"20150901194821\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55ef1597.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20157\",\n        \"jobName\": \"Clark Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Clark Project\",\n        \"projIndex\": \"Project_55ef1672.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150909130000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150910131018\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150916131022\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150919000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150910131018\",\n        \"proofPlannedDate\": \"20150916131022\",\n        \"deliverPlannedDate\": \"20150919000000\",\n        \"orderDate\": \"20150908142904\",\n        \"compDate\": \"20151022120000\",\n        \"createdDate\": \"20150908130631\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55ef1597.PRJ55ef1938\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20157\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150908142904\",\n        \"orderSentDate\": \"20150908143021\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55ef2cb4.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20158\",\n        \"jobName\": \"Cornerstone Brochure v3\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150909150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151123120000\",\n        \"createdDate\": \"20150908144508\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130912151003\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55f2e330.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20159\",\n        \"jobName\": \"Veritas wine labels\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"Veritas wine labels\",\n        \"projIndex\": \"Project_55f2ed3c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150914150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150914104152\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150917104157\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150922104201\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150914104152\",\n        \"proofPlannedDate\": \"20150917104157\",\n        \"deliverPlannedDate\": \"20150922104201\",\n        \"orderDate\": \"20150911111201\",\n        \"compDate\": \"20150911120000\",\n        \"createdDate\": \"20150911102032\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55f2e330.PRJ55f2e888\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"5000.0\",\n        \"ordNum\": \"20159\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20150911111201\",\n        \"orderSentDate\": \"20150911111345\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"750.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55f82652.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20161\",\n        \"jobName\": \"M Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"M Brochure Project\",\n        \"projIndex\": \"Project_55f82992.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150916150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150929100858\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150929100858\",\n        \"orderDate\": \"20150915104040\",\n        \"compDate\": \"20150915120000\",\n        \"createdDate\": \"20150915100818\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55f82652.PRJ55f826e4\",\n        \"ordQuant\": \"15000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20161\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150915104040\",\n        \"orderSentDate\": \"20150915104315\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"900.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55f83005.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20162\",\n        \"jobName\": \"M Brochure v2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150916150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20150915120000\",\n        \"createdDate\": \"20150915104941\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150915104040\",\n        \"orderSentDate\": \"20150915104315\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55f860b4.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20163\",\n        \"jobName\": \"Integra Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Integra Brochure\",\n        \"projIndex\": \"Project_55f8607a.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150916140000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150917141853\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150917141853\",\n        \"orderDate\": \"20160218115021\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20150915141724\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55f860b4.PRJ55f86231\",\n        \"ordQuant\": \"1100\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"20163\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150915144023\",\n        \"orderSentDate\": \"20150915144114\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-581.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55fae848.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20165\",\n        \"jobName\": \"Phoenix  Binding \",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150918150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150924124753\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20150924124753\",\n        \"orderDate\": \"20150917124824\",\n        \"compDate\": \"20160512120000\",\n        \"createdDate\": \"20150917122024\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55fae848.PRJ55faea73\",\n        \"ordQuant\": \"15000\",\n        \"ordPrice\": \"4200.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20150917124824\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"14066.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55fb1f5d.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20166\",\n        \"jobName\": \"Service Manual - 16 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151001120000\",\n        \"createdDate\": \"20150917161525\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"55fb1f5d.PRJ55fb1f5f\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"1280.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"397.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"55fc5da6.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20167\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150921150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151001120000\",\n        \"createdDate\": \"20150918145326\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"560582cb.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20168\",\n        \"jobName\": \"McCann Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"McCann Project\",\n        \"projIndex\": \"Project_56058266.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150928130000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150926132734\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20150927132731\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20150929132729\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150926132734\",\n        \"proofPlannedDate\": \"20150927132731\",\n        \"deliverPlannedDate\": \"20150929132729\",\n        \"orderDate\": \"20150925143115\",\n        \"compDate\": \"20150925120000\",\n        \"createdDate\": \"20150925132219\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"560582cb.PRJ5605886f\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3500.0\",\n        \"ordNum\": \"20168\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150925143115\",\n        \"orderSentDate\": \"20150925143204\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-333.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5605941f.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20169\",\n        \"jobName\": \"[Copy ] CS Brochure v2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150928150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20150925143615\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150901194642\",\n        \"orderSentDate\": \"20150901194821\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5605945a.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20170\",\n        \"jobName\": \"[Copy ] CS Brochure v2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150925143715\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151001120000\",\n        \"createdDate\": \"20150925143714\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150901194642\",\n        \"orderSentDate\": \"20150901194821\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56059714.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20171\",\n        \"jobName\": \"McCann Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20150928150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151022120000\",\n        \"createdDate\": \"20150925144852\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150925143115\",\n        \"orderSentDate\": \"20150925143204\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"560bebf8.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20173\",\n        \"jobName\": \"Cordero Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151001150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20150930100551\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151002100556\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151020100605\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20150930100551\",\n        \"proofPlannedDate\": \"20151002100556\",\n        \"deliverPlannedDate\": \"20151020100605\",\n        \"orderDate\": \"20150930101959\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20150930100440\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"560bebf8.PRJ560bed9e\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3000.0\",\n        \"ordNum\": \"34343\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20150930101959\",\n        \"orderSentDate\": \"20150930102047\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"560ee867.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20174\",\n        \"jobName\": \"[Copy ] July 2015\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151005150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151022120000\",\n        \"createdDate\": \"20151002162615\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"560ee886.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20175\",\n        \"jobName\": \"Clark Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151005150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160920120000\",\n        \"createdDate\": \"20151002162646\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150908142904\",\n        \"orderSentDate\": \"20150908143021\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"560ee8ce.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20176\",\n        \"jobName\": \"[Copy ] Cornerstone Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151002162800\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151013120000\",\n        \"createdDate\": \"20151002162758\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130912151003\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"560ee99e.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20177\",\n        \"jobName\": \"Clark Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151002163128\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20151116145813\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151118145819\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151124155554\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20151030155554\",\n        \"orderDate\": \"20151030155624\",\n        \"compDate\": \"20160223120000\",\n        \"createdDate\": \"20151002163126\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"560ee99e.PRJ560ee9a0\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"15.0\",\n        \"ordNum\": \"20177\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150908142904\",\n        \"orderSentDate\": \"20150908143021\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"10.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"560eea52.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20178\",\n        \"jobName\": \"Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151002163428\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20151002163426\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150720121933\",\n        \"orderSentDate\": \"20150720122201\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"560eeaa8.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20179\",\n        \"jobName\": \"Integra Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151005150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151022120000\",\n        \"createdDate\": \"20151002163552\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150915144023\",\n        \"orderSentDate\": \"20150915144114\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"560eeaca.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20180\",\n        \"jobName\": \"Integra Manual\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151005150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20151117134210\",\n        \"compDate\": \"20151117120000\",\n        \"createdDate\": \"20151002163626\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"560eeaca.PRJ560eeacc\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"100.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20150915144023\",\n        \"orderSentDate\": \"20150915144114\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5628fc0d.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20182\",\n        \"jobName\": \"Brand Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Brand Brochure Project\",\n        \"projIndex\": \"Project_5629018e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151023150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20151024111017\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151026111020\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151028111022\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151022120000\",\n        \"createdDate\": \"20151022110901\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"562908f7.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20183\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151030120000\",\n        \"createdDate\": \"20151022120407\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"562908f7.PRJ562908f9\",\n        \"ordQuant\": \"7500\",\n        \"ordPrice\": \"1140.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"512.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56290c00.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20184v2\",\n        \"jobName\": \"Brand Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151023150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20151026104930\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151028104933\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151030104937\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20151022121704\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56290c00.PRJ56290c04\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56290de6.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20185\",\n        \"jobName\": \"[Copy ] Brand Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151023150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151030120000\",\n        \"createdDate\": \"20151022122510\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"563379c3.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20186\",\n        \"jobName\": \"AARP Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151102150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20151031101604\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151109101607\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151111101614\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20151031101604\",\n        \"proofPlannedDate\": \"20151109101607\",\n        \"deliverPlannedDate\": \"20151111101614\",\n        \"orderDate\": \"20151030103254\",\n        \"compDate\": \"20151030120000\",\n        \"createdDate\": \"20151030100803\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"563379c3.PRJ56337cdc\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20186\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20151030103026\",\n        \"orderSentDate\": \"20151030103417\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"750.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"563381a3.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20187\",\n        \"jobName\": \"[Copy ] AARP Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151102150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151030120000\",\n        \"createdDate\": \"20151030104139\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20151030103026\",\n        \"orderSentDate\": \"20151030103417\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56338274.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20188\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151031104519\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20151031104519\",\n        \"orderDate\": \"20151201140551\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20151030104508\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56338274.PRJ56338275\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"840.0\",\n        \"ordNum\": \"20188\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20151030104536\",\n        \"orderSentDate\": \"20151030104613\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"560.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5633cf2a.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20190\",\n        \"jobName\": \"[Copy ] Clark Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151102150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151124120000\",\n        \"createdDate\": \"20151030161226\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150908142904\",\n        \"orderSentDate\": \"20150908143021\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5638d73a.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20191\",\n        \"jobName\": \"Formax Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Formax Project\",\n        \"projIndex\": \"Project_564252e4.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151104140000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20151112152702\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151113152705\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151117152707\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20151112152702\",\n        \"proofPlannedDate\": \"20151113152705\",\n        \"deliverPlannedDate\": \"20151117152707\",\n        \"orderDate\": \"20151110160432\",\n        \"compDate\": \"20151110120000\",\n        \"createdDate\": \"20151103104810\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5638d73a.PRJ564254c1\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20151110160037\",\n        \"orderSentDate\": \"20151110160219\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56425d67.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20192\",\n        \"jobName\": \"[Copy ] Formax Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151111150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151124120000\",\n        \"createdDate\": \"20151110161103\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20151110160037\",\n        \"orderSentDate\": \"20151110160219\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5644fb17.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20193\",\n        \"jobName\": \"MW Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151113150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20151113154921\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151116154924\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151119154928\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20151113154921\",\n        \"proofPlannedDate\": \"20151116154924\",\n        \"deliverPlannedDate\": \"20151119154928\",\n        \"orderDate\": \"20151112161447\",\n        \"compDate\": \"20151112120000\",\n        \"createdDate\": \"20151112154823\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5644fb17.PRJ5644fd42\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20193\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20151112161447\",\n        \"orderSentDate\": \"20151112161641\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56450af8.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20194\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151113150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151117120000\",\n        \"createdDate\": \"20151112165608\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"564b6d16.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20195\",\n        \"jobName\": \"SC Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151118150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20151105145718\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151109145720\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151124130904\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20151123130904\",\n        \"orderDate\": \"20151117132136\",\n        \"compDate\": \"20151117120000\",\n        \"createdDate\": \"20151117130822\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"564b6d16.PRJ564b6dc3\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"2995.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20151117131216\",\n        \"orderSentDate\": \"20151117131251\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"564b6f11.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20196\",\n        \"jobName\": \"[Copy ] SC Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151118150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151124120000\",\n        \"createdDate\": \"20151117131649\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20151117131216\",\n        \"orderSentDate\": \"20151117131251\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"564b75c6.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20197\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20151124145645\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151125145653\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151127145658\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151201120000\",\n        \"createdDate\": \"20151117134526\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"564b75c6.PRJ564b75c7\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"1320.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"525.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56532afd.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20198\",\n        \"jobName\": \"Paradigm Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Paradigm Brochure\",\n        \"projIndex\": \"Project_56533023.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151124130000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20151126101234\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151129101232\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151130101229\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20151126101234\",\n        \"proofPlannedDate\": \"20151129101232\",\n        \"deliverPlannedDate\": \"20151130101229\",\n        \"orderDate\": \"20160106122603\",\n        \"compDate\": \"20151123120000\",\n        \"createdDate\": \"20151123100429\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56532afd.PRJ56532df5\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20198\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20151123104043\",\n        \"orderSentDate\": \"20151123104225\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"565335fd.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20199\",\n        \"jobName\": \"[Copy ] Paradigm Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151124150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151124120000\",\n        \"createdDate\": \"20151123105125\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20151123104043\",\n        \"orderSentDate\": \"20151123104225\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5654c6e8.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20200\",\n        \"jobName\": \"53 Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151125150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20151125152446\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151126152450\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151130152453\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20151125152446\",\n        \"proofPlannedDate\": \"20151126152450\",\n        \"deliverPlannedDate\": \"20151130152453\",\n        \"orderDate\": \"20151124155555\",\n        \"compDate\": \"20151124120000\",\n        \"createdDate\": \"20151124152200\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5654c6e8.PRJ5654ca73\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20200\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20151124155555\",\n        \"orderSentDate\": \"20151124160338\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5654d33a.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20201\",\n        \"jobName\": \"[Copy ] 53 Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151125150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20151201120000\",\n        \"createdDate\": \"20151124161434\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20151124155555\",\n        \"orderSentDate\": \"20151124160338\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5654d50d.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20202\",\n        \"jobName\": \"Service Manual - 16 pg\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160223120000\",\n        \"createdDate\": \"20151124162221\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5654d50d.PRJ5654d50f\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"800.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"565de6ae.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20203\",\n        \"jobName\": \"APS Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"APS Project\",\n        \"projIndex\": \"Project_565de643.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151202150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20151210132939\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151218132942\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151217132943\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20151201132758\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"565de8c5.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20204\",\n        \"jobName\": \"APS Rack card\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"APS Project\",\n        \"projIndex\": \"Project_565de643.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151202150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20151201133653\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"565dee31.PRJ\",\n        \"lastMod\": \"1557218847\",\n        \"jobNumber\": \"20205\",\n        \"jobName\": \"APS Brochure v2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151202150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20151201140001\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56605b67.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"20206\",\n        \"jobName\": \"MW Brochure2\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151204150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20151207101803\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151209101805\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151223101808\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20151207101803\",\n        \"proofPlannedDate\": \"20151209101805\",\n        \"deliverPlannedDate\": \"20151223101808\",\n        \"orderDate\": \"20151203104719\",\n        \"compDate\": \"20151203120000\",\n        \"createdDate\": \"20151203101031\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56605b67.PRJ5660607a\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"20206\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20151203104719\",\n        \"orderSentDate\": \"20151203104850\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1466.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"566066cc.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"20207\",\n        \"jobName\": \"[Copy ] MW Brochure2\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20151204150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160223120000\",\n        \"createdDate\": \"20151203105908\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20151203104719\",\n        \"orderSentDate\": \"20151203104850\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56606c9d.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"20210\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160223120000\",\n        \"createdDate\": \"20151203112357\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56606c9d.PRJ56606c9f\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"1320.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"525.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"568d455b.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92868\",\n        \"jobName\": \"Acme Project\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Acme Project\",\n        \"projIndex\": \"Project_568d44ff.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160107150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160114114837\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20160106114827\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"568d4fad.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92869\",\n        \"jobName\": \"Paradigm Brochure v2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Paradigm Brochure\",\n        \"projIndex\": \"Project_56533023.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160107150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20151126101234\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20151129101232\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20151130101229\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20160106123229\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20151123104043\",\n        \"orderSentDate\": \"20151123104225\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"568d5646.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92873\",\n        \"jobName\": \"Service Manual - 20 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20160125151149\",\n        \"compDate\": \"20160223120000\",\n        \"createdDate\": \"20160106130038\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"568d5646.PRJ568d5647\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"820.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160125151149\",\n        \"orderSentDate\": \"20160125151421\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"418.75\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"568fd31f.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92874\",\n        \"jobName\": \"Aspen Graphics Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Aspen Graphics Brochure\",\n        \"projIndex\": \"Project_568fd2db.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160111150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160112102231\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160114102236\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160119102239\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160112102231\",\n        \"proofPlannedDate\": \"20160114102236\",\n        \"deliverPlannedDate\": \"20160119102239\",\n        \"orderDate\": \"20160108105214\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160108101751\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"568fd31f.PRJ568fd687\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"92874\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160108105214\",\n        \"orderSentDate\": \"20160108105423\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"568fded6.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92876\",\n        \"jobName\": \"best Bruchure\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"best Bruchure\",\n        \"projIndex\": \"Project_568fdeb5.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160111150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160108120000\",\n        \"createdDate\": \"20160108110750\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56954c9f.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92877\",\n        \"jobName\": \"Forrmax Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Heart to Heart Project\",\n        \"projIndex\": \"Project_56954c1d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160113150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160113135825\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160114135829\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160118135833\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160113135825\",\n        \"proofPlannedDate\": \"20160114135829\",\n        \"deliverPlannedDate\": \"20160118135833\",\n        \"orderDate\": \"20160112143413\",\n        \"compDate\": \"20160112120000\",\n        \"createdDate\": \"20160112135735\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56954c9f.PRJ56954f85\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1200.0\",\n        \"ordNum\": \"92877\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160112143413\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1533.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5695563e.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92878\",\n        \"jobName\": \"Danish Gov. Brochure\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job: \",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160113150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160112143838\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5695563e.PRJ56955641\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150911082659\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56955cac.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92879\",\n        \"jobName\": \"Thiessen Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Thiessen Brochure\",\n        \"projIndex\": \"Project_56bb77b4.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160113150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160113150727\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160115150731\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160119150735\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160113150727\",\n        \"proofPlannedDate\": \"20160115150731\",\n        \"deliverPlannedDate\": \"20160119150735\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160112150604\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56955cac.PRJ56bb7783\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"10.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"569e554e.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92885\",\n        \"jobName\": \"Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Printing Direct Project\",\n        \"projIndex\": \"Project_569e54ec.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160120150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160120102619\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160121102622\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160125102627\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160120102619\",\n        \"proofPlannedDate\": \"20160121102622\",\n        \"deliverPlannedDate\": \"20160125102627\",\n        \"orderDate\": \"20160119105425\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160119102502\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"569e554e.PRJ569e576d\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3500.0\",\n        \"ordNum\": \"92885\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160119105425\",\n        \"orderSentDate\": \"20160119105447\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1333.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56a6645d.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92886\",\n        \"jobName\": \"Toni Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160126150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160126130840\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160128130847\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160131130852\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160126130840\",\n        \"proofPlannedDate\": \"20160128130847\",\n        \"deliverPlannedDate\": \"20160131130852\",\n        \"orderDate\": \"20160125132740\",\n        \"compDate\": \"20160125120000\",\n        \"createdDate\": \"20160125130725\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56a6645d.PRJ56a66664\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3500.0\",\n        \"ordNum\": \"92886\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160125132740\",\n        \"orderSentDate\": \"20160125132840\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"566.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56ba34e1.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92889\",\n        \"jobName\": \"Mnority Report\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"Mnority Report\",\n        \"projIndex\": \"Project_56ba5185.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160210150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20160211135133\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160212135137\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160219135127\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20160209135009\",\n        \"numBidders\": \"6\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56bb613d.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92890\",\n        \"jobName\": \"Shepard Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Shepard Project\",\n        \"projIndex\": \"Project_56bb6107.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160211150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160211111226\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160212111229\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160222111235\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160211111226\",\n        \"proofPlannedDate\": \"20160212111229\",\n        \"deliverPlannedDate\": \"20160222111235\",\n        \"orderDate\": \"20160210115228\",\n        \"compDate\": \"20160210120000\",\n        \"createdDate\": \"20160210111141\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56bb613d.PRJ56bb63bc\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"92890\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160210115228\",\n        \"orderSentDate\": \"20160210115314\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1533.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56bb6bc4.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92891\",\n        \"jobName\": \"Shepard Brochure2\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160211150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20170615215634\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170616215637\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170621215639\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20160210115636\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160210115228\",\n        \"orderSentDate\": \"20160210115314\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56c228da.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92892\",\n        \"jobName\": \"February Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160216150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160216143823\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160218143826\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160223143829\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160216143823\",\n        \"proofPlannedDate\": \"20160218143826\",\n        \"deliverPlannedDate\": \"20160223143829\",\n        \"orderDate\": \"20160215145716\",\n        \"compDate\": \"20160215120000\",\n        \"createdDate\": \"20160215143658\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56c228da.PRJ56c22a99\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2700.0\",\n        \"ordNum\": \"92892\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160215145716\",\n        \"orderSentDate\": \"20160215145739\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"400.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56c5d5b4.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92895\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160218093219\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20160218093219\",\n        \"orderDate\": \"20160218093234\",\n        \"compDate\": \"20160202120000\",\n        \"createdDate\": \"20160218093116\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56c5d5b4.PRJ56c5d5b7\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"1320.0\",\n        \"ordNum\": \"92895\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160218093234\",\n        \"orderSentDate\": \"20160218093314\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"525.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56c5d672.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92896\",\n        \"jobName\": \"Service Manual - 16 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20160218093426\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56c5d672.PRJ56c5d675\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56c5d69b.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92897\",\n        \"jobName\": \"Service Manual - 16 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160223120000\",\n        \"createdDate\": \"20160218093507\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56c5d69b.PRJ56c5d69d\",\n        \"ordQuant\": \"6500\",\n        \"ordPrice\": \"1173.75\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56c5db18.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92898\",\n        \"jobName\": \"Service Manual - 12 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"Test 3 Project\",\n        \"projIndex\": \"Project_56c5db9c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160223120000\",\n        \"createdDate\": \"20160218095416\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56c5db18.PRJ56c5db1a\",\n        \"ordQuant\": \"15000\",\n        \"ordPrice\": \"1275.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56c5dd44.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92899\",\n        \"jobName\": \"Healthy Life Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Healthy Life Project\",\n        \"projIndex\": \"Project_56cc75d9.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160224150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160225101704\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160226101711\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160229101715\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160225101704\",\n        \"proofPlannedDate\": \"20160226101711\",\n        \"deliverPlannedDate\": \"20160229101715\",\n        \"orderDate\": \"20160223113651\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20160218100332\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56c5dd44.PRJ56cc7a90\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"6555.0\",\n        \"ordNum\": \"92899\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160223113651\",\n        \"orderSentDate\": \"20160223113751\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"891.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56c5f33b.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92901\",\n        \"jobName\": \" Brochure v2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"PrintingDirect\",\n        \"projIndex\": \"Project_56c5e686.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160218113718\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160321100930\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160322100949\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160325100952\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160316120000\",\n        \"createdDate\": \"20160218113715\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56cc901a.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92903\",\n        \"jobName\": \"[Copy ] Healthy Life Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160224150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160308120000\",\n        \"createdDate\": \"20160223120010\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160223113651\",\n        \"orderSentDate\": \"20160223113751\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56cf605c.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92904\",\n        \"jobName\": \"Academy Brochure\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160226150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160225151430\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160229151433\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160309151437\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160225151430\",\n        \"proofPlannedDate\": \"20160229151433\",\n        \"deliverPlannedDate\": \"20160309151437\",\n        \"orderDate\": \"20160225153823\",\n        \"compDate\": \"20160225120000\",\n        \"createdDate\": \"20160225151316\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56cf605c.PRJ56cf62f6\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"3300.0\",\n        \"ordNum\": \"45454\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160225153823\",\n        \"orderSentDate\": \"20160225153908\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"433.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56d5a1d3.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92906\",\n        \"jobName\": \"AR Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Ar Design\",\n        \"projIndex\": \"Project_56d5a19b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160302150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160302090713\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160309090717\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160318090720\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160301090611\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56d614be.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92908\",\n        \"jobName\": \"Cantella Brochure\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"Cantella Project\",\n        \"projIndex\": \"Project_56d6147c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160304110000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160331110946\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20160331110946\",\n        \"orderDate\": \"20160318111104\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160301171630\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56d614be.PRJ56d618d1\",\n        \"ordQuant\": \"1500\",\n        \"ordPrice\": \"7044.0\",\n        \"ordNum\": \"92908\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160318111104\",\n        \"orderSentDate\": \"20160318111242\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-522.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56d61936.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92909\",\n        \"jobName\": \"Cantella Pocket Folder\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"Cantella Project\",\n        \"projIndex\": \"Project_56d6147c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160304110000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160311120000\",\n        \"createdDate\": \"20160301173534\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56dd8ea4.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92910\",\n        \"jobName\": \"Cantella Pocket Folder B\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"Cantella Project\",\n        \"projIndex\": \"Project_56d6147c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160308150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160311120000\",\n        \"createdDate\": \"20160307092228\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56dd9bbd.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92913\",\n        \"jobName\": \"Danish Gov. Brochure B\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job: \",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160308150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20160308102131\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160309102134\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160316102138\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160307101821\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20150911082659\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56def0d4.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92914\",\n        \"jobName\": \"Yespos Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Yespos Project\",\n        \"projIndex\": \"Project_56def080.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160309150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160310103357\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160314103406\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160318103409\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160310103357\",\n        \"proofPlannedDate\": \"20160314103406\",\n        \"deliverPlannedDate\": \"20160318103409\",\n        \"orderDate\": \"20160308111304\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20160308103340\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56def0d4.PRJ56def341\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"92914\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160308111304\",\n        \"orderSentDate\": \"20160308111410\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1233.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56defb23.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92915\",\n        \"jobName\": \"ADV Brochure\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160309150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160427120000\",\n        \"createdDate\": \"20160308111739\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56df3588.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92916\",\n        \"jobName\": \"ASG Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"ASG Project\",\n        \"projIndex\": \"Project_56df3545.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160310150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160308152729\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160310152733\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160322152736\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160308152729\",\n        \"proofPlannedDate\": \"20160310152733\",\n        \"deliverPlannedDate\": \"20160322152736\",\n        \"orderDate\": \"20160308160333\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160308152648\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56df3588.PRJ56df3797\",\n        \"ordQuant\": \"4000\",\n        \"ordPrice\": \"4400.0\",\n        \"ordNum\": \"92916\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160308160333\",\n        \"orderSentDate\": \"20160308160346\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"477.7778\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56df4f1c.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92914-copy\",\n        \"jobName\": \"Yespos Brochure v2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Yespos Project\",\n        \"projIndex\": \"Project_56def080.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160308171558\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160310103357\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160314103406\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160318103409\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20160308171556\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160308111304\",\n        \"orderSentDate\": \"20160308111410\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56e1d1e3.PRJ\",\n        \"lastMod\": \"1557218848\",\n        \"jobNumber\": \"92919\",\n        \"jobName\": \"Cantella Pocket Folder C\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"Cantella Project\",\n        \"projIndex\": \"Project_56d6147c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160311150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160331111303\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20160331111303\",\n        \"orderDate\": \"20160318111326\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160310145827\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56e1d1e3.PRJ56e1d237\",\n        \"ordQuant\": \"2500\",\n        \"ordPrice\": \"1905.0\",\n        \"ordNum\": \"92919\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160318111326\",\n        \"orderSentDate\": \"20160318111446\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56e1d9b6.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92920\",\n        \"jobName\": \"Emperor-Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Emperor-Project\",\n        \"projIndex\": \"Project_56fa81aa.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160330100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160331092123\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160404092131\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160408120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160331092123\",\n        \"proofPlannedDate\": \"20160404092131\",\n        \"deliverPlannedDate\": \"20160408120000\",\n        \"orderDate\": \"20160329103950\",\n        \"compDate\": \"20160329120000\",\n        \"createdDate\": \"20160310153150\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56e1d9b6.PRJ56fa8daf\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"92920\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160329103950\",\n        \"orderSentDate\": \"20160329104056\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56e1e5fd.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92921\",\n        \"jobName\": \"DS Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160311100000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20160314163501\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160316163517\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160317120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20160310162413\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56e81f15.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92922\",\n        \"jobName\": \"Scottish Borders Council Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Scottish Borders Council\",\n        \"projIndex\": \"Project_56e81edb.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160316150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160315104225\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160317104229\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160329104232\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160315104225\",\n        \"proofPlannedDate\": \"20160317104229\",\n        \"deliverPlannedDate\": \"20160329104232\",\n        \"orderDate\": \"20160315110750\",\n        \"compDate\": \"20160808120000\",\n        \"createdDate\": \"20160315104125\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56e81f15.PRJ56e8219a\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"92922\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160315110750\",\n        \"orderSentDate\": \"20160315110834\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56e82978.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92923\",\n        \"jobName\": \"Jared's Brochure Ree\",\n        \"custName\": \"Service Net - Pacific - Sam Moulton\",\n        \"custIndex\": \"53078800\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160316150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160315112544\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140708101941\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56e9770e.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92924\",\n        \"jobName\": \"ES-Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160317110000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160316120000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20160316110902\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56f141f9.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92925\",\n        \"jobName\": \"Paperworkz Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Paperworkz Project\",\n        \"projIndex\": \"Project_56f141c8.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160323150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160322090252\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160324090257\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160330090301\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160322090252\",\n        \"proofPlannedDate\": \"20160324090257\",\n        \"deliverPlannedDate\": \"20160330090301\",\n        \"orderDate\": \"20160322093509\",\n        \"compDate\": \"20160322120000\",\n        \"createdDate\": \"20160322090041\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56f141f9.PRJ56f1450a\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"23222\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160322093509\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"433.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56f14da7.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92926\",\n        \"jobName\": \"Paperworkz Brochure Revision\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160323150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160322095031\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160322093509\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56fa95aa.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92927\",\n        \"jobName\": \"Emperor- Training Manual\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Emperor-New Enrollment\",\n        \"projIndex\": \"Project_56fbe1d0.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160330150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20161221120000\",\n        \"createdDate\": \"20160329104810\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"56fa95aa.PRJ56fbe14c\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160329103950\",\n        \"orderSentDate\": \"20160329104056\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56fa9734.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92928\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160330150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160408120000\",\n        \"createdDate\": \"20160329105444\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"56fdb7df.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92930\",\n        \"jobName\": \"XYZ Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"XYZ Brochure\",\n        \"projIndex\": \"Project_5708108b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160411150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160412154907\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160413154910\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160415154913\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160408120000\",\n        \"createdDate\": \"20160331195055\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57065e7b.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92933\",\n        \"jobName\": \"VP Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"VP Project\",\n        \"projIndex\": \"Project_57065e22.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160408150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160407092046\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160414092050\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160421092054\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160407092046\",\n        \"proofPlannedDate\": \"20160414092050\",\n        \"deliverPlannedDate\": \"20160421092054\",\n        \"orderDate\": \"20160407094843\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160407091955\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57065e7b.PRJ5706610b\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"33333\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160407094843\",\n        \"orderSentDate\": \"20160407094904\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57066696.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92934\",\n        \"jobName\": \" Forrmax Brochure-1\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160408150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160407120000\",\n        \"createdDate\": \"20160407095430\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160112143413\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5707c26b.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92935\",\n        \"jobName\": \"Premier Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Premier Project\",\n        \"projIndex\": \"Project_5707c22b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160411150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160408104131\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160415104135\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160425104140\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160408104131\",\n        \"proofPlannedDate\": \"20160415104135\",\n        \"deliverPlannedDate\": \"20160422104140\",\n        \"orderDate\": \"20160408112433\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160408103835\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5707c26b.PRJ5707c62e\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"92935\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160408112433\",\n        \"orderSentDate\": \"20160408112518\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57081482.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92937\",\n        \"jobName\": \"XYZ Brochurev2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160524150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20160526193804\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160527193808\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160530193811\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170621120000\",\n        \"createdDate\": \"20160408162850\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5708155d.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92938\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160411150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160427120000\",\n        \"createdDate\": \"20160408163229\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"571fbcc9.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92940\",\n        \"jobName\": \"Legends Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Legends Proposal\",\n        \"projIndex\": \"Project_571fbc8b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160427150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160427151214\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160429151216\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160509151219\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160427151214\",\n        \"proofPlannedDate\": \"20160429151216\",\n        \"deliverPlannedDate\": \"20160509151219\",\n        \"orderDate\": \"20160426155159\",\n        \"compDate\": \"20160426120000\",\n        \"createdDate\": \"20160426150857\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"571fbcc9.PRJ571fc17f\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"92940\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160426155159\",\n        \"orderSentDate\": \"20160426155311\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5720ca77.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92941\",\n        \"jobName\": \"JH Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160428150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160428102245\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160429102249\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160430102251\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160428102245\",\n        \"proofPlannedDate\": \"20160429102249\",\n        \"deliverPlannedDate\": \"20160430102251\",\n        \"orderDate\": \"20160427104528\",\n        \"compDate\": \"20160427120000\",\n        \"createdDate\": \"20160427101935\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5720ca77.PRJ5720cc71\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"92941\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160427104528\",\n        \"orderSentDate\": \"20160427104624\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"435.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5720d25a.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92942\",\n        \"jobName\": \"JH Brochure\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"JH Brochure\",\n        \"projIndex\": \"Project_57f40d36.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160428150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20160614103743\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160624103746\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160427105314\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160427104528\",\n        \"orderSentDate\": \"20160427104624\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5734805c.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92947\",\n        \"jobName\": \"27 Degrees Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"27 Degrees Project\",\n        \"projIndex\": \"Project_57348003.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160513150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160512090937\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160519090940\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160525090943\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160512090937\",\n        \"proofPlannedDate\": \"20160519090940\",\n        \"deliverPlannedDate\": \"20160525090943\",\n        \"orderDate\": \"20160512093924\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160512090844\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5734805c.PRJ57348246\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"92947\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160512093924\",\n        \"orderSentDate\": \"20160512094013\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57348a46.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92948\",\n        \"jobName\": \"Forrmax Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160513150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20170712191948\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170720191951\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170727191953\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160512095102\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160112143413\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"573b2706.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92950\",\n        \"jobName\": \"ProofBridge Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"ProofBridge Project\",\n        \"projIndex\": \"Project_573b268e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160518150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160517101437\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160519101439\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160531101442\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160517101437\",\n        \"proofPlannedDate\": \"20160519101439\",\n        \"deliverPlannedDate\": \"20160531101442\",\n        \"orderDate\": \"20160517104155\",\n        \"compDate\": \"20160517120000\",\n        \"createdDate\": \"20160517101326\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"573b2706.PRJ573b28e9\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2100.0\",\n        \"ordNum\": \"92950\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160517104155\",\n        \"orderSentDate\": \"20160517104315\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"573e65f3.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92952\",\n        \"jobName\": \"Rogue Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Rogue Project\",\n        \"projIndex\": \"Project_573e65c1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"10\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160520150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160519212022\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160526212025\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160527212027\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160519212022\",\n        \"proofPlannedDate\": \"20160526212025\",\n        \"deliverPlannedDate\": \"20160527212027\",\n        \"orderDate\": \"20160519214532\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160519211843\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"573e65f3.PRJ573e6864\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2100.0\",\n        \"ordNum\": \"92952\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160519214532\",\n        \"orderSentDate\": \"20160519214616\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5743681e.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92954\",\n        \"jobName\": \"Patty's Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Patty Project\",\n        \"projIndex\": \"Project_574367ca.xml\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160525150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160524163013\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160525163015\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160530163017\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160524163013\",\n        \"proofPlannedDate\": \"20160525163015\",\n        \"deliverPlannedDate\": \"20160530163017\",\n        \"orderDate\": \"20170501120807\",\n        \"compDate\": \"20170705120000\",\n        \"createdDate\": \"20160523162918\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5743681e.PRJ57436a0b\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3400.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170501120807\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"266.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57436d77.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92955\",\n        \"jobName\": \"Patty's Brochure---16 page\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Patty Project\",\n        \"projIndex\": \"Project_574367ca.xml\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160524150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20160524163013\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160525163015\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160530163017\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160523165207\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57473d4a.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92956\",\n        \"jobName\": \"COGS Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"COGS Project\",\n        \"projIndex\": \"Project_57473d0a.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160527160000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160526141650\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160531141652\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160606141655\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160526141650\",\n        \"proofPlannedDate\": \"20160530141652\",\n        \"deliverPlannedDate\": \"20160606141655\",\n        \"orderDate\": \"20160526144816\",\n        \"compDate\": \"20160526120000\",\n        \"createdDate\": \"20160526141538\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57473d4a.PRJ57473f89\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2100.0\",\n        \"ordNum\": \"92956\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160526144337\",\n        \"orderSentDate\": \"20160526144422\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"574747f1.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92956\",\n        \"jobName\": \"COGS Envelope\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"COGS Project\",\n        \"projIndex\": \"Project_57473d0a.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160527150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160526150105\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57560447.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92960\",\n        \"jobName\": \"Kiwi Bank Brochure\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160608150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160607191759\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160614191803\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160623191806\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160607191759\",\n        \"proofPlannedDate\": \"20160614191803\",\n        \"deliverPlannedDate\": \"20160623191806\",\n        \"orderDate\": \"20160606193958\",\n        \"compDate\": \"20160606120000\",\n        \"createdDate\": \"20160606191623\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57560447.PRJ575605fd\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1100.0\",\n        \"ordNum\": \"323344\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160606193958\",\n        \"orderSentDate\": \"20160606194115\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1466.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57560ad7.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92961\",\n        \"jobName\": \"Kiwi Bank Brochure Reprint\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160607150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180313120000\",\n        \"createdDate\": \"20160606194423\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160606193958\",\n        \"orderSentDate\": \"20160606194115\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57586d9b.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92962\",\n        \"jobName\": \"Group O Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Group O Project\",\n        \"projIndex\": \"Project_57586d4e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160609150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160608151206\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160615151209\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160621151212\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160608151206\",\n        \"proofPlannedDate\": \"20160615151209\",\n        \"deliverPlannedDate\": \"20160621151212\",\n        \"orderDate\": \"20160608153605\",\n        \"compDate\": \"20160608120000\",\n        \"createdDate\": \"20160608151019\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57586d9b.PRJ57586f6f\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"232222\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160608153605\",\n        \"orderSentDate\": \"20160608153656\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57587721.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92963\",\n        \"jobName\": \"Group O Brochure--Reprint\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160609150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160608155057\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160608153605\",\n        \"orderSentDate\": \"20160608153656\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57648cb6.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92966\",\n        \"jobName\": \"Service Manual - 28 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20160617195014\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57648cb6.PRJ57648cb8\",\n        \"ordQuant\": \"7500\",\n        \"ordPrice\": \"1160.00\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5767eabd.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92967\",\n        \"jobName\": \"Emperor Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160622150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160621090957\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160623091000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160629091003\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160621090957\",\n        \"proofPlannedDate\": \"20160623091000\",\n        \"deliverPlannedDate\": \"20160629091003\",\n        \"orderDate\": \"20160620093905\",\n        \"compDate\": \"20160620120000\",\n        \"createdDate\": \"20160620090813\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5767eabd.PRJ5767ed72\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3300.0\",\n        \"ordNum\": \"76767\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160620093905\",\n        \"orderSentDate\": \"20160620094023\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-550.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5767f5ae.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92969\",\n        \"jobName\": \"Emperor envelope\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"Emperor Project\",\n        \"projIndex\": \"Project_5767f583.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160621150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160620095454\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5767f5d1.PRJ\",\n        \"lastMod\": \"1571689804\",\n        \"jobNumber\": \"92970\",\n        \"jobName\": \"Emperor brochure\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"Emperor Project\",\n        \"projIndex\": \"Project_5767f583.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160621150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160620095529\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"576a9039.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92972\",\n        \"jobName\": \"Atelier Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Atelier Project\",\n        \"projIndex\": \"Project_576a8fff.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160624150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160623091942\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160624091945\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160627091948\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160623091942\",\n        \"proofPlannedDate\": \"20160624091945\",\n        \"deliverPlannedDate\": \"20160627091948\",\n        \"orderDate\": \"20160622095615\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160622091849\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"576a9039.PRJ576a929e\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"92972\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160622095615\",\n        \"orderSentDate\": \"20160622095706\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"433.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"576d5295.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92976\",\n        \"jobName\": \"Healthy Life Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Healthy Life Campaign\",\n        \"projIndex\": \"Project_576d52cb.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160627150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160628113350\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160630113358\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160712113402\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160628113350\",\n        \"proofPlannedDate\": \"20160630113358\",\n        \"deliverPlannedDate\": \"20160712113402\",\n        \"orderDate\": \"20160630160415\",\n        \"compDate\": \"20160630120000\",\n        \"createdDate\": \"20160624113237\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"576d5295.PRJ576d5322\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160223113651\",\n        \"orderSentDate\": \"20160223113751\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"577e60e7.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92977\",\n        \"jobName\": \"MSM Brochure\",\n        \"custName\": \"Pacific Insurance Co. - \",\n        \"custIndex\": \"54e21589\",\n        \"projName\": \"MSM Project\",\n        \"projIndex\": \"Project_577e6436.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160708150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160711100316\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160714100333\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160722100335\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160711100316\",\n        \"proofPlannedDate\": \"20160714100333\",\n        \"deliverPlannedDate\": \"20160722100335\",\n        \"orderDate\": \"20160707102457\",\n        \"compDate\": \"20160707120000\",\n        \"createdDate\": \"20160707100215\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"577e60e7.PRJ577e6291\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"92977\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160707102457\",\n        \"orderSentDate\": \"20160707102714\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"2500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57891982.PRJ\",\n        \"lastMod\": \"1557218849\",\n        \"jobNumber\": \"92980\",\n        \"jobName\": \"Mills Envelope\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Mills Project\",\n        \"projIndex\": \"Project_57891948.xml\",\n        \"itemIndex\": \"578919b1\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160718150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160715131348\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160719131350\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160727131354\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160715131348\",\n        \"proofPlannedDate\": \"20160719131350\",\n        \"deliverPlannedDate\": \"20160727131354\",\n        \"orderDate\": \"20160715134657\",\n        \"compDate\": \"20160805120000\",\n        \"createdDate\": \"20160715131234\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57891982.PRJ57891c62\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3300.0\",\n        \"ordNum\": \"92980\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160715134657\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57891b28.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"92981\",\n        \"jobName\": \"Mills Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Mills Project\",\n        \"projIndex\": \"Project_57891948.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160718150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160715132000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160720132001\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160727132004\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160715132000\",\n        \"proofPlannedDate\": \"20160720132001\",\n        \"deliverPlannedDate\": \"20160727132004\",\n        \"orderDate\": \"20160715135224\",\n        \"compDate\": \"20160805120000\",\n        \"createdDate\": \"20160715131936\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57891b28.PRJ57891bc8\",\n        \"ordQuant\": \"6000\",\n        \"ordPrice\": \"6600.0\",\n        \"ordNum\": \"92981\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160715135224\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1055.5556\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5789296e.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"92983\",\n        \"jobName\": \" Merck Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160718150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160715142030\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20130917114344\",\n        \"orderSentDate\": \"20130917114426\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57992ad1.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"92984\",\n        \"jobName\": \"Buckner Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Buckner Project\",\n        \"projIndex\": \"Project_57992a99.xml\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160728150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160728174333\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160803174335\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160823000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160728174333\",\n        \"proofPlannedDate\": \"20160803174335\",\n        \"deliverPlannedDate\": \"20160823000000\",\n        \"orderDate\": \"20160727181248\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160727174241\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57992ad1.PRJ57992d25\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"3300.0\",\n        \"ordNum\": \"92984\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160727181248\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1100.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57a4c6eb.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"92987\",\n        \"jobName\": \"Mills Self Cover Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Mills Project\",\n        \"projIndex\": \"Project_57a4c6af.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160809130000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160808130423\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160816130428\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160824130430\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160808130423\",\n        \"proofPlannedDate\": \"20160816130428\",\n        \"deliverPlannedDate\": \"20160824130430\",\n        \"orderDate\": \"20160805132913\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160805130339\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57a4c6eb.PRJ57a4c8ab\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3300.0\",\n        \"ordNum\": \"92987\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160805132913\",\n        \"orderSentDate\": \"20160805132924\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"366.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57a4cfbe.PRJ\",\n        \"lastMod\": \"1707937477\",\n        \"jobNumber\": \"92988\",\n        \"jobName\": \"DS Brochure\",\n        \"custName\": \"Ford Motor Company - Blair Weidig\",\n        \"custIndex\": \"5cc36865\",\n        \"projName\": \"Blue Parachute Project\",\n        \"projIndex\": \"Project_5bc4ed74.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"TB1 Printed Checkout Bags\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160806110000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20211224130007\",\n        \"compDate\": \"20181015160720\",\n        \"createdDate\": \"20160805134118\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57a4cfbe.PRJ5bc4ead4\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"3390.00\",\n        \"ordNum\": \"92988\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20211224130007\",\n        \"orderSentDate\": \"20181015155755\",\n        \"extAcctSync\": \"5\",\n        \"finalPrice\": \"3390.00\",\n        \"savingsAmt\": \"3087.78\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57bdf244.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"92991\",\n        \"jobName\": \"GroupO Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Group o Project\",\n        \"projIndex\": \"Project_57bdf1ce.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160825150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160825151553\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160827151556\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160831151559\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160825151553\",\n        \"proofPlannedDate\": \"20160827151556\",\n        \"deliverPlannedDate\": \"20160831151559\",\n        \"orderDate\": \"20160824154340\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160824151516\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57bdf244.PRJ57bdf30b\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"92991\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160824154340\",\n        \"orderSentDate\": \"20160824154445\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57bdf345.PRJ\",\n        \"lastMod\": \"1589846675\",\n        \"jobNumber\": \"92992\",\n        \"jobName\": \"Group O Label\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Group o Project\",\n        \"projIndex\": \"Project_57bdf1ce.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160825150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160831151937\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160824151933\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57bdfdc9.PRJ\",\n        \"lastMod\": \"1589846670\",\n        \"jobNumber\": \"92994\",\n        \"jobName\": \"Group O 2 Versions\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"Group O 2\",\n        \"projIndex\": \"Project_57bdf9b7.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160825150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160824160522\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160824160425\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57bdfeb0.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"92995\",\n        \"jobName\": \"Group O 2 CBO\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"Group O 2\",\n        \"projIndex\": \"Project_57bdf9b7.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160825150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160824160816\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57bdffdd.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"92996\",\n        \"jobName\": \"Master Template\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"Master Template\",\n        \"projIndex\": \"Project_57f1d24f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160825150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160824161317\",\n        \"numBidders\": \"7\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57c49b8f.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"92998\",\n        \"jobName\": \"RBO Brochure\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160830150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20160922120000\",\n        \"createdDate\": \"20160829163111\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57c5be8d.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93000\",\n        \"jobName\": \"Duke Dalbavancin PK Study Cover Spine Inserts\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Duke Dalbavancin PK Study\",\n        \"projIndex\": \"Project_57c5bc1d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160831150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160830131245\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57c5bffc.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93001\",\n        \"jobName\": \"Duke Dalbavancin PK Study Table of Contents\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Duke Dalbavancin PK Study\",\n        \"projIndex\": \"Project_57c5bc1d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160831150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20160831131911\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160906131916\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160920131922\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160830131852\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57c5c136.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93002\",\n        \"jobName\": \"Duke Dalbavancin PK Study Tabs\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Duke Dalbavancin PK Study\",\n        \"projIndex\": \"Project_57c5bc1d.xml\",\n        \"itemIndex\": \"5405207a\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160831150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160830132406\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57c5daf6.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93003\",\n        \"jobName\": \"Duke Clinical Trial Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Duke Clinical Trial\",\n        \"projIndex\": \"Project_57c5daa9.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160831150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160830151535\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160906151538\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160920151546\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160830151535\",\n        \"proofPlannedDate\": \"20160906151538\",\n        \"deliverPlannedDate\": \"20160920151546\",\n        \"orderDate\": \"20160830155855\",\n        \"compDate\": \"20160830120000\",\n        \"createdDate\": \"20160830151358\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57c5daf6.PRJ57c5ddd3\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"34343443\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160830155743\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57c5e73a.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93005--\",\n        \"jobName\": \"Duke Clinical Trial Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160831150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160830160618\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160830155743\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57d1a9e9.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93007\",\n        \"jobName\": \"AIG Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"AIG Project\",\n        \"projIndex\": \"Project_57d1a9b5.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160909150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160908141225\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160916141228\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160929141230\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160908141225\",\n        \"proofPlannedDate\": \"20160915141228\",\n        \"deliverPlannedDate\": \"20160929141230\",\n        \"orderDate\": \"20160908143859\",\n        \"compDate\": \"20160908120000\",\n        \"createdDate\": \"20160908141153\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57d1a9e9.PRJ57d1aba1\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3300.0\",\n        \"ordNum\": \"93007\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160908143859\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"366.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57d1c05d.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93009\",\n        \"jobName\": \"Brochure\",\n        \"custName\": \"Peoples Insurance - Mike Overton\",\n        \"custIndex\": \"49f6f476\",\n        \"projName\": \"53 Project\",\n        \"projIndex\": \"Project_57d1c010.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160909150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160909154827\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160912154831\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160914154836\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160909154827\",\n        \"proofPlannedDate\": \"20160912154831\",\n        \"deliverPlannedDate\": \"20160914154836\",\n        \"orderDate\": \"20160908162312\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160908154741\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57d1c05d.PRJ57d1c4a3\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"93009\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160908162312\",\n        \"orderSentDate\": \"20160908162420\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57d2c259.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93011\",\n        \"jobName\": \"KPMG\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160912150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20160909100928\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160916100931\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160922100933\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160909100825\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57d73a24.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93012\",\n        \"jobName\": \"Scammell Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Scammell Project\",\n        \"projIndex\": \"Project_57d739f1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160913150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160912192915\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160921192917\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160928192920\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160912192915\",\n        \"proofPlannedDate\": \"20160921192917\",\n        \"deliverPlannedDate\": \"20160928192920\",\n        \"orderDate\": \"20160912195226\",\n        \"compDate\": \"20160912120000\",\n        \"createdDate\": \"20160912192836\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57d73a24.PRJ57d73bd9\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93012\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160912195226\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57d9af01.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93014\",\n        \"jobName\": \"Hippo Box \",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Hippo Project\",\n        \"projIndex\": \"Project_57d9aecc.xml\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160915150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160914161220\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160921161223\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160928161226\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160914161220\",\n        \"proofPlannedDate\": \"20160921161223\",\n        \"deliverPlannedDate\": \"20160928161226\",\n        \"orderDate\": \"20160914165647\",\n        \"compDate\": \"20170212120000\",\n        \"createdDate\": \"20160914161145\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57d9af01.PRJ57d9b496\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93014\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160914165647\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57dade29.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93016\",\n        \"jobName\": \"Vestcom Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Vestcom Project\",\n        \"projIndex\": \"Project_57daddd9.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160916150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160915134553\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160922134555\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160929134557\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160915134553\",\n        \"proofPlannedDate\": \"20160922134555\",\n        \"deliverPlannedDate\": \"20160929134557\",\n        \"orderDate\": \"20160915140655\",\n        \"compDate\": \"20160915120000\",\n        \"createdDate\": \"20160915134513\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57dade29.PRJ57dadfbf\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93016\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160915140655\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57dae401.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93016\",\n        \"jobName\": \"Vestcom test\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Vestcom Project\",\n        \"projIndex\": \"Project_57daddd9.xml\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160916150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160915141009\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57dae57c.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93017\",\n        \"jobName\": \"Vestcom Brochure--Reprint\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160916150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160915141628\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160915140655\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57e12d61.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93019\",\n        \"jobName\": \"Emperor Envelope\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Emperor Test Project\",\n        \"projIndex\": \"Project_57e12d38.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160921150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160920083649\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57e12dea.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93020\",\n        \"jobName\": \"Emperor Annual Report\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Emperor Test Project\",\n        \"projIndex\": \"Project_57e12d38.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160921150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161109183910\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161111183913\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161124183915\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161109183910\",\n        \"proofPlannedDate\": \"20161111183913\",\n        \"deliverPlannedDate\": \"20161124183915\",\n        \"orderDate\": \"20161107185048\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160920083906\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57e12dea.PRJ58211158\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"4400.0\",\n        \"ordNum\": \"93020\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161107185048\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"100.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"orfwejpwejpej\"\n    },\n    {\n        \"jobIndex\": \"57e12e6b.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93021\",\n        \"jobName\": \"Emperor Insert\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Emperor Test Project\",\n        \"projIndex\": \"Project_57e12d38.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160921150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160920084115\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57e144c7.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93022\",\n        \"jobName\": \"WBA Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160921150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160922102031\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160923102034\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160927102036\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160922102031\",\n        \"proofPlannedDate\": \"20160923102034\",\n        \"deliverPlannedDate\": \"20160927102036\",\n        \"orderDate\": \"20160920105301\",\n        \"compDate\": \"20160920120000\",\n        \"createdDate\": \"20160920101639\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57e144c7.PRJ57e149ed\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"93022\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160920105301\",\n        \"orderSentDate\": \"20160920105622\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"350.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57e16df3.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93023\",\n        \"jobName\": \"DC Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160920170000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160925131735\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160926131732\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160929131729\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160925131735\",\n        \"proofPlannedDate\": \"20160926131732\",\n        \"deliverPlannedDate\": \"20160929131729\",\n        \"orderDate\": \"20160920135456\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160920131219\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57e16df3.PRJ57e172e3\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93023\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160920135456\",\n        \"orderSentDate\": \"20160920135806\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"600.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57e2ccc7.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93027\",\n        \"jobName\": \"Mills Research  Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Mills Research\",\n        \"projIndex\": \"Project_57e2cc9a.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160922150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160928141152\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20160928141152\",\n        \"orderDate\": \"20160921144838\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20160921140911\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57e2ccc7.PRJ57e2ceda\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"1400.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160921144838\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57e2d6f3.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93028\",\n        \"jobName\": \"Job: 93027 - Mills R   : Paper Order\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Mills Research\",\n        \"projIndex\": \"Project_57e2cc9a.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Paper\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160922150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20160921145252\",\n        \"compDate\": \"20160921120000\",\n        \"createdDate\": \"20160921145235\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57e2d6f3.PRJ57e2d6f5\",\n        \"ordQuant\": \"257\",\n        \"ordPrice\": \"22.54\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160921145252\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57e41f46.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93029\",\n        \"jobName\": \"RBO Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"RBO Project 2\",\n        \"projIndex\": \"Project_57e42598.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160923150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160924142731\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160926142737\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160929150844\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160924142731\",\n        \"proofPlannedDate\": \"20160926142737\",\n        \"deliverPlannedDate\": \"20160929150844\",\n        \"orderDate\": \"20160922154358\",\n        \"compDate\": \"20160922120000\",\n        \"createdDate\": \"20160922141326\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"4\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57e41f46.PRJ57e42558\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93029\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20160922154358\",\n        \"orderSentDate\": \"20160922154447\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57e42c90.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93030\",\n        \"jobName\": \"RBOEnvelope\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"RBO Project 2\",\n        \"projIndex\": \"Project_57e42598.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160923150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160929151033\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20160922151008\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57e97a8d.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93031\",\n        \"jobName\": \"Thomson Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Thomson Project\",\n        \"projIndex\": \"Project_57e97a56.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20160927150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20160926154455\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20160928154501\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160930154504\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20160926154455\",\n        \"proofPlannedDate\": \"20160928154501\",\n        \"deliverPlannedDate\": \"20160930154504\",\n        \"orderDate\": \"20160926161405\",\n        \"compDate\": \"20160926120000\",\n        \"createdDate\": \"20160926154413\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57e97a8d.PRJ57e97c70\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93031\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20160926161405\",\n        \"orderSentDate\": \"20160926161452\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57eada73.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93037\",\n        \"jobName\": \"Service Manual - 24 pg\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Brochure\",\n        \"projIndex\": \"Project_582c6ed1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20160928164555\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20160928164555\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20160927164539\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57eada73.PRJ57eada76\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"805.0\",\n        \"ordNum\": \"93037\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"40.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57f3b222.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93038\",\n        \"jobName\": \"Julez Annual Report\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161006150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161005094808\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161011094811\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161018094814\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161005094808\",\n        \"proofPlannedDate\": \"20161011094811\",\n        \"deliverPlannedDate\": \"20161018094814\",\n        \"orderDate\": \"20161004103902\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20161004094402\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57f3b222.PRJ57f3b889\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3400.0\",\n        \"ordNum\": \"34343\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161004103902\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1800.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57f3bf87.PRJ\",\n        \"lastMod\": \"1557218850\",\n        \"jobNumber\": \"93038-1\",\n        \"jobName\": \"Julez Annual Report\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161005150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161005094808\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161011094811\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161018094814\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20161004120000\",\n        \"createdDate\": \"20161004104111\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20161004103902\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57f3c0b3.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93039\",\n        \"jobName\": \"Julez Annual Report \",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Julez Annual Report Project\",\n        \"projIndex\": \"Project_57f3c07f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161005150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161004104611\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57f3c0c7.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93040\",\n        \"jobName\": \"Julez Annual Report Proxy\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Julez Annual Report Project\",\n        \"projIndex\": \"Project_57f3c07f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161005150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161004104631\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57f557e4.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93043\",\n        \"jobName\": \"GroupO Brochure: Paper Order\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Group o Project\",\n        \"projIndex\": \"Project_57bdf1ce.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161006150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20161005154332\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57f557e4.PRJ57f557e5\",\n        \"ordQuant\": \"25\",\n        \"ordPrice\": \"0.64\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57f57f4d.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93045\",\n        \"jobName\": \"OCE Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161006150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161005183141\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57fcef6c.PRJ\",\n        \"lastMod\": \"1571689804\",\n        \"jobNumber\": \"93046\",\n        \"jobName\": \"Emperor Catalog\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Emperor Catalog Project\",\n        \"projIndex\": \"Project_57fcf751.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161012140000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161013100031\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161016100034\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161021100036\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161013100031\",\n        \"proofPlannedDate\": \"20161016100034\",\n        \"deliverPlannedDate\": \"20161021100036\",\n        \"orderDate\": \"20161011104312\",\n        \"compDate\": \"20161011120000\",\n        \"createdDate\": \"20161011095556\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"57fcef6c.PRJ57fcf3ca\",\n        \"ordQuant\": \"75000\",\n        \"ordPrice\": \"13950.0\",\n        \"ordNum\": \"93046\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20161011104312\",\n        \"orderSentDate\": \"20161011104448\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"2533.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"57fcfe28.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93047\",\n        \"jobName\": \"Emperor 2\",\n        \"custName\": \"First Midwest Bank - \",\n        \"custIndex\": \"53078806\",\n        \"projName\": \"Emperor 2\",\n        \"projIndex\": \"Project_585ae30b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161012150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161027105918\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161011105848\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5806269b.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93048\",\n        \"jobName\": \"Emperor 2 Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Emperor 2 Project\",\n        \"projIndex\": \"Project_58062665.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161019150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161019094345\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161021094348\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161031094350\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161019094345\",\n        \"proofPlannedDate\": \"20161020094348\",\n        \"deliverPlannedDate\": \"20161031094350\",\n        \"orderDate\": \"20161018101026\",\n        \"compDate\": \"20161018120000\",\n        \"createdDate\": \"20161018094147\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5806269b.PRJ58062925\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1800.0\",\n        \"ordNum\": \"121111\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161018101026\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1733.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"580630a3.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93048\",\n        \"jobName\": \"Emperor 2 Brochure--Ver 2\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161019150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161018102435\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20161018101026\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5807d4a7.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93050\",\n        \"jobName\": \"Hippo 2 brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Hippo 2 Project\",\n        \"projIndex\": \"Project_5807d465.xml\",\n        \"itemIndex\": \"578919b1\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161027150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20161019162107\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161020162109\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161021162112\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161019161639\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58090824.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93053\",\n        \"jobName\": \"QPSI Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161024150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161020140958\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161028141000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161029141003\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161020140958\",\n        \"proofPlannedDate\": \"20161021141000\",\n        \"deliverPlannedDate\": \"20161022141003\",\n        \"orderDate\": \"20161020143730\",\n        \"compDate\": \"20161020120000\",\n        \"createdDate\": \"20161020140836\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58090824.PRJ58090b15\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"3300.0\",\n        \"ordNum\": \"12345\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161020143730\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58091b2c.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93054\",\n        \"jobName\": \"Hippo 3 Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Hippo 3 Project\",\n        \"projIndex\": \"Project_58091ae5.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161021150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161020153058\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161026153101\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161031153104\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161020153058\",\n        \"proofPlannedDate\": \"20161022153101\",\n        \"deliverPlannedDate\": \"20161027153104\",\n        \"orderDate\": \"20161020160233\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20161020152948\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58091b2c.PRJ58091e29\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93054\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161020160233\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"580934d1.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93055\",\n        \"jobName\": \"Leigh's Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Leigh's Project\",\n        \"projIndex\": \"Project_5809349d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161022150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161024172009\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161026172012\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161028172015\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161021172009\",\n        \"proofPlannedDate\": \"20161022172012\",\n        \"deliverPlannedDate\": \"20161026172015\",\n        \"orderDate\": \"20161020174703\",\n        \"compDate\": \"20161020120000\",\n        \"createdDate\": \"20161020171913\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"580934d1.PRJ5809373a\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"5500.0\",\n        \"ordNum\": \"93055\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161020174703\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-1100.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58093c7a.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93056\",\n        \"jobName\": \"Leigh's Brochure Version 2\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161021150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161020175154\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20161020174703\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5822234f.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93064\",\n        \"jobName\": \"Impact Mailer Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Impact Mailer Project\",\n        \"projIndex\": \"Project_582222fc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161110150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161110141158\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161115141201\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161122141203\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20161108144032\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161108141111\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5822234f.PRJ5822257d\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93064\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161108144032\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58223f6f.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93064\",\n        \"jobName\": \"Impact Mailer brochure a\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Impact Mailer Project\",\n        \"projIndex\": \"Project_582222fc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161109150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161108161111\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"582241d4.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93065\",\n        \"jobName\": \"Hippo Test Decal\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Hippo Test Project\",\n        \"projIndex\": \"Project_58224140.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161109150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20161118120000\",\n        \"createdDate\": \"20161108162124\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"582241d4.PRJ58224206\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"200.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"582c6afd.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93068\",\n        \"jobName\": \"The Printing Place Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"The Printing Place Project\",\n        \"projIndex\": \"Project_582c6ab7.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161117150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161117092026\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161124092030\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161125092032\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161117092026\",\n        \"proofPlannedDate\": \"20161124092030\",\n        \"deliverPlannedDate\": \"20161125092032\",\n        \"orderDate\": \"20161116095528\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20161116091941\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"582c6afd.PRJ582c70cb\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3300.0\",\n        \"ordNum\": \"93068\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161116095528\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-550.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"582f2125.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93072\",\n        \"jobName\": \"Village Print Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Village Print Project\",\n        \"projIndex\": \"Project_582f20ac.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161122150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161118104358\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161122104401\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161130104404\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161118104358\",\n        \"proofPlannedDate\": \"20161122104401\",\n        \"deliverPlannedDate\": \"20161130104404\",\n        \"orderDate\": \"20161118111512\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20161118104125\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"582f2125.PRJ582f23c2\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93072\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161118111512\",\n        \"orderSentDate\": \"20161118111527\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"582f2757.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93072\",\n        \"jobName\": \"Red Comet Brochure \",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Village Print Project\",\n        \"projIndex\": \"Project_582f20ac.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161121150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20161205163600\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161208163603\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161216163611\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161118110751\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"582f2f92.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93073\",\n        \"jobName\": \"Next Level Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Next Level Project\",\n        \"projIndex\": \"Project_582f2f4d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161122150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161118114350\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161123114353\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161130114356\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161118114350\",\n        \"proofPlannedDate\": \"20161122114353\",\n        \"deliverPlannedDate\": \"20161129114356\",\n        \"orderDate\": \"20161118120741\",\n        \"compDate\": \"20161118120000\",\n        \"createdDate\": \"20161118114258\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"582f2f92.PRJ582f3109\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93073\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161118120741\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"582f39ec.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93074\",\n        \"jobName\": \" Next Level Brochure 2nd version\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161121150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161118122708\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20161118120741\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58336330.PRJ\",\n        \"lastMod\": \"1616475207\",\n        \"jobNumber\": \"93075\",\n        \"jobName\": \"Quantum Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161122150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20161123161410\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161128161413\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161130161416\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161121161216\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58337481.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93076\",\n        \"jobName\": \"Quad Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Quad project\",\n        \"projIndex\": \"Project_58337450.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161123150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161122172711\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161124172715\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161128172717\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161122172711\",\n        \"proofPlannedDate\": \"20161124172715\",\n        \"deliverPlannedDate\": \"20161128172717\",\n        \"orderDate\": \"20161121175118\",\n        \"compDate\": \"20161121120000\",\n        \"createdDate\": \"20161121172609\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58337481.PRJ58337637\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93076\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161121175118\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58337aef.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93077\",\n        \"jobName\": \"Quad Brochure--Reprint\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161122150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161121175335\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20161121175118\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"583d9d2e.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93078\",\n        \"jobName\": \"DFC Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"DFC Project\",\n        \"projIndex\": \"Project_583d9abb.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161130150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161202102240\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161207102304\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161209102313\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161202102240\",\n        \"proofPlannedDate\": \"20161207102304\",\n        \"deliverPlannedDate\": \"20161209102313\",\n        \"orderDate\": \"20161129132214\",\n        \"compDate\": \"20161129120000\",\n        \"createdDate\": \"20161129102222\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"583d9d2e.PRJ583da7d6\",\n        \"ordQuant\": \"75000\",\n        \"ordPrice\": \"8625.0\",\n        \"ordNum\": \"93078\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20161129132214\",\n        \"orderSentDate\": \"20161129132357\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1425.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"583dba94.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93079\",\n        \"jobName\": \"AIG Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161219130000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161220110338\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161222110425\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161228110429\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161220110338\",\n        \"proofPlannedDate\": \"20161222110425\",\n        \"deliverPlannedDate\": \"20161228110429\",\n        \"orderDate\": \"20161216114505\",\n        \"compDate\": \"20161216120000\",\n        \"createdDate\": \"20161129122748\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"583dba94.PRJ585414ea\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93079\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20161216114505\",\n        \"orderSentDate\": \"20161216114839\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"2000.00\",\n        \"savingsAmt\": \"833.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58402fc4.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93081\",\n        \"jobName\": \"Gerald Judd Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Gerald Judd Project\",\n        \"projIndex\": \"Project_58402f89.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161205150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161202091329\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161207091333\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161214091335\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161202091329\",\n        \"proofPlannedDate\": \"20161207091333\",\n        \"deliverPlannedDate\": \"20161214091335\",\n        \"orderDate\": \"20161201095038\",\n        \"compDate\": \"20161201120000\",\n        \"createdDate\": \"20161201091220\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58402fc4.PRJ58403236\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93081\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161201095038\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58403470.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93082\",\n        \"jobName\": \"Gerald Judd Project A\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Gerald Judd Project\",\n        \"projIndex\": \"Project_58402f89.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161202150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161201093216\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58403560.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93083\",\n        \"jobName\": \"Gerald Judd envelopes\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Gerald Judd Project\",\n        \"projIndex\": \"Project_58402f89.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161202150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161201093616\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58403a49.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93084\",\n        \"jobName\": \"Gerald Judd Brochure--reprint\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161202150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161201095713\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20161201095038\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5840849c.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93085\",\n        \"jobName\": \"Village Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Village Project\",\n        \"projIndex\": \"Project_58408463.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161208150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161207151539\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161215151542\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161222151544\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161207151539\",\n        \"proofPlannedDate\": \"20161215151542\",\n        \"deliverPlannedDate\": \"20161222151544\",\n        \"orderDate\": \"20161201154026\",\n        \"compDate\": \"20161201120000\",\n        \"createdDate\": \"20161201151420\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5840849c.PRJ584086af\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93085\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161201154026\",\n        \"orderSentDate\": \"20161201154035\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58408cbf.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93085\",\n        \"jobName\": \"Village Pens\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Village Project\",\n        \"projIndex\": \"Project_58408463.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161202150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161201154903\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5845be84.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93086\",\n        \"jobName\": \"Village Brochure\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161206150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161205142244\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5845c011.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93087\",\n        \"jobName\": \"Village Brochure Test\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Village Test Project\",\n        \"projIndex\": \"Project_5845bfdc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161207150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20161207143511\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161207143514\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"20161207143511\",\n        \"deliverPlannedDate\": \"20161207143514\",\n        \"orderDate\": \"20161205150912\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20161205142921\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5845c011.PRJ5845c066\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"838383883\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20161205150912\",\n        \"orderSentDate\": \"20161205151151\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5845c087.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93088\",\n        \"jobName\": \"Village Brochure Foil Stamping\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Village Test Project\",\n        \"projIndex\": \"Project_5845bfdc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161206150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161205143119\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5845c3ea.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93089\",\n        \"jobName\": \"Village Test notes\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Village Test Project\",\n        \"projIndex\": \"Project_5845bfdc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161206150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161205144546\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58581922.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93092\",\n        \"jobName\": \"Vestcom Brochure 3\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Vestcom Project\",\n        \"projIndex\": \"Project_585818dc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161220150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161221123256\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161222123300\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161226123303\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161221123256\",\n        \"proofPlannedDate\": \"20161222123300\",\n        \"deliverPlannedDate\": \"20161226123303\",\n        \"orderDate\": \"20161219133144\",\n        \"compDate\": \"20161219120000\",\n        \"createdDate\": \"20161219123010\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58581922.PRJ58581d66\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93092\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20161219133144\",\n        \"orderSentDate\": \"20161219133307\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"750.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"585823bf.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93092\",\n        \"jobName\": \"Vestcom Cover Letter\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Vestcom Project\",\n        \"projIndex\": \"Project_585818dc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161220150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161228131731\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161219131527\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"585825b8.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93093\",\n        \"jobName\": \"Vestcom Brochure 4\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Vestcom Project\",\n        \"projIndex\": \"Project_585818dc.xml\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161220150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20161221123256\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161222123300\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161226123303\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161219132352\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"585825f6.PRJ\",\n        \"lastMod\": \"1618685739\",\n        \"jobNumber\": \"93092\",\n        \"jobName\": \"Vestcom Project 4\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Vestcom Project\",\n        \"projIndex\": \"Project_585818dc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161220150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161219132454\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"585ad394.PRJ\",\n        \"lastMod\": \"1557218851\",\n        \"jobNumber\": \"93094\",\n        \"jobName\": \"DFS Manual \",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"DFS Manual Projec t\",\n        \"projIndex\": \"Project_585ad364.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@verizon.net\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161222150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161223141135\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161226141143\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161230141145\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161223141135\",\n        \"proofPlannedDate\": \"20161226141143\",\n        \"deliverPlannedDate\": \"20161230141145\",\n        \"orderDate\": \"20161221150224\",\n        \"compDate\": \"20161221120000\",\n        \"createdDate\": \"20161221141012\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"585ad394.PRJ585ad7bf\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"93094\",\n        \"orderAuth\": \"byancich@verizon.net\",\n        \"orderAuthDate\": \"20161221150224\",\n        \"orderSentDate\": \"20161221150438\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1466.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"586529bb.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93096\",\n        \"jobName\": \"DFS Brochure\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161230150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20161229102049\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161230102051\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161231102053\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20161229102049\",\n        \"proofPlannedDate\": \"20161230102051\",\n        \"deliverPlannedDate\": \"20161231102053\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20161229102027\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"586529bb.PRJ586529f6\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58652c07.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93097\",\n        \"jobName\": \"DFS Mailer\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161230150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20161229103045\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20161230103047\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20161231103049\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161229103015\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58652cfb.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93098\",\n        \"jobName\": \"DFS Envelopes\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"DFS Mailer\",\n        \"projIndex\": \"Project_58652cda.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161230150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161229103419\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58652d46.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93099\",\n        \"jobName\": \"DFS Brochures\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"DFS Mailer\",\n        \"projIndex\": \"Project_58652cda.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20161230150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20161229103534\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"586d4ea1.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93101\",\n        \"jobName\": \"Vestcom1 Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Vestcom1 Project\",\n        \"projIndex\": \"Project_586d4e3c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170106150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170105143910\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170111143915\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170118143918\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170105143910\",\n        \"proofPlannedDate\": \"20170111143915\",\n        \"deliverPlannedDate\": \"20170118143918\",\n        \"orderDate\": \"20170104154205\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20170104143601\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"586d4ea1.PRJ586d53be\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"23232\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170104154205\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"586d5592.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93102\",\n        \"jobName\": \"Vestcom1 Brochure2\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Vestcom1 Project\",\n        \"projIndex\": \"Project_586d4e3c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170105150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170104120000\",\n        \"createdDate\": \"20170104150538\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"586d583a.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93102\",\n        \"jobName\": \"Vestcom1 Brochure2-Reprint 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170105150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170104151658\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"586d6207.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93103\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170105150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170104120000\",\n        \"createdDate\": \"20170104155847\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"586d63f5.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93104\",\n        \"jobName\": \"Clorox Headers and Shelf Talker\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170105150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20170111160739\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170118160741\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170125160744\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170104160701\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"586d6c90.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93105\",\n        \"jobName\": \"Belt Rack Side Swing Signs\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170105150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170104164344\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"587fd0f4.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93108\",\n        \"jobName\": \"AXA Brochure\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"AXA Enrollment\",\n        \"projIndex\": \"Project_587fd08e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170119150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170119153453\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170120153459\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170127153502\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170119153453\",\n        \"proofPlannedDate\": \"20170120153459\",\n        \"deliverPlannedDate\": \"20170127153502\",\n        \"orderDate\": \"20170118163444\",\n        \"compDate\": \"20170118120000\",\n        \"createdDate\": \"20170118153252\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"587fd0f4.PRJ587fd694\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93108\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170118161658\",\n        \"orderSentDate\": \"20170118161928\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"587fdde0.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93110\",\n        \"jobName\": \"AXA Cover Letter\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"AXA Enrollment\",\n        \"projIndex\": \"Project_587fd08e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170119150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170523120000\",\n        \"createdDate\": \"20170118162800\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"588b79b1.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93111\",\n        \"jobName\": \"Midland Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Midland Project\",\n        \"projIndex\": \"Project_588b7976.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170131150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170128114923\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170131114927\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170208114929\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170128114923\",\n        \"proofPlannedDate\": \"20170130114927\",\n        \"deliverPlannedDate\": \"20170208114929\",\n        \"orderDate\": \"20170127121850\",\n        \"compDate\": \"20170127120000\",\n        \"createdDate\": \"20170127114745\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"588b79b1.PRJ588b7c2a\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93111\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170127121850\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"588b8227.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93112\",\n        \"jobName\": \"Midland Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Midland Brochure\",\n        \"projIndex\": \"Project_58b5eb0f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170130150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170127122351\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170127121850\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5890db28.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93113\",\n        \"jobName\": \"Pro-Ed Catalog\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170209150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170131134551\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170209134554\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170223134602\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170131134551\",\n        \"proofPlannedDate\": \"20170202134554\",\n        \"deliverPlannedDate\": \"20170214134602\",\n        \"orderDate\": \"20170131142418\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20170131134456\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5890db28.PRJ5890de42\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93113\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170131142418\",\n        \"orderSentDate\": \"20170131142731\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1466.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"589b5317.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93115\",\n        \"jobName\": \"Big Prints Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Big Prints Project\",\n        \"projIndex\": \"Project_589b52f2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170209150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170209122002\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170215122005\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170222122007\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170209122002\",\n        \"proofPlannedDate\": \"20170215122005\",\n        \"deliverPlannedDate\": \"20170222122007\",\n        \"orderDate\": \"20170208124150\",\n        \"compDate\": \"20170208120000\",\n        \"createdDate\": \"20170208121919\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"589b5317.PRJ589b5475\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"3000.0\",\n        \"ordNum\": \"93115\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170208124150\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"589c7b22.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93117\",\n        \"jobName\": \"UOL Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"University of London Project\",\n        \"projIndex\": \"Project_589c7af9.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170211150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170210092320\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170216092322\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170220092325\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170210092320\",\n        \"proofPlannedDate\": \"20170216092322\",\n        \"deliverPlannedDate\": \"20170220092325\",\n        \"orderDate\": \"20170209094726\",\n        \"compDate\": \"20170209120000\",\n        \"createdDate\": \"20170209092226\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"589c7b22.PRJ589c7cd8\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93117\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170209094726\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"589c821d.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93118\",\n        \"jobName\": \"University of London Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170210150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170209095213\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170209094726\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"589ccd96.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93119\",\n        \"jobName\": \"MLB brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"MLB Project\",\n        \"projIndex\": \"Project_589ccd63.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170211150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170210151509\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170214151512\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170223151514\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170210151509\",\n        \"proofPlannedDate\": \"20170214151512\",\n        \"deliverPlannedDate\": \"20170223151514\",\n        \"orderDate\": \"20170209154033\",\n        \"compDate\": \"20170209120000\",\n        \"createdDate\": \"20170209151414\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"589ccd96.PRJ589ccfc3\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"5000.0\",\n        \"ordNum\": \"93119\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170209154033\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"589cd742.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93119\",\n        \"jobName\": \"MLB bottle tag die cut\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"MLB Project\",\n        \"projIndex\": \"Project_589ccd63.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170210150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170209155530\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58a0a55f.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93123\",\n        \"jobName\": \"MBA-Group Mailer\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"MBA-Group Mailer Project\",\n        \"projIndex\": \"Project_58a0a7dc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170214150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20170214131231\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170216131234\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170227131236\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170212131143\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58a0a786.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93123-a\",\n        \"jobName\": \"MBA-Group Mailer\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"MBA-Group Mailer Project\",\n        \"projIndex\": \"Project_58a0a7dc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170213150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170214131231\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170216131234\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170227131236\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170214131231\",\n        \"proofPlannedDate\": \"20170216131234\",\n        \"deliverPlannedDate\": \"20170227131236\",\n        \"orderDate\": \"20170213113155\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20170212132054\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58a0a786.PRJ58a0a7c0\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"8420.0\",\n        \"ordNum\": \"93123-a\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170213113155\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58a46dc4.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93124\",\n        \"jobName\": \"SW Brochure\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"SW Brochure\",\n        \"projIndex\": \"Project_58b5f007.xml\",\n        \"itemIndex\": \"58a46df2\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170216000000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170215100522\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170216000000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170223100526\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170215100332\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58a7470f.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93126\",\n        \"jobName\": \"MLB Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"MLB Project\",\n        \"projIndex\": \"Project_58a749a2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170220150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170219135607\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170221135610\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170224135612\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170219135607\",\n        \"proofPlannedDate\": \"20170221135610\",\n        \"deliverPlannedDate\": \"20170224135612\",\n        \"orderDate\": \"20170217141037\",\n        \"compDate\": \"20170228120000\",\n        \"createdDate\": \"20170217135511\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58a7470f.PRJ58a7481f\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93126\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170217141037\",\n        \"orderSentDate\": \"20170217141141\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"850.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58adf45d.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93127\",\n        \"jobName\": \"[Copy ] Provider Directory\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"[Copy ] Provider Directory\",\n        \"projIndex\": \"Project_58b5eaaa.xml\",\n        \"itemIndex\": \"4a1421ac\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170222152813\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58adf45d.PRJ58b5c7e0\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"400.00\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170222152549\",\n        \"orderSentDate\": \"20170222152629\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"37.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58af1a25.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93128\",\n        \"jobName\": \"NECO Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"NECO Project\",\n        \"projIndex\": \"Project_58af19de.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170224150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170224122225\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170227122228\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170228122231\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170223122141\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58b5e751.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93129\",\n        \"jobName\": \"Heritage Print Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Heritage Print Project\",\n        \"projIndex\": \"Project_58b5e727.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170302150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170301161138\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170308161145\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170315161150\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170301161138\",\n        \"proofPlannedDate\": \"20170308161145\",\n        \"deliverPlannedDate\": \"20170315161150\",\n        \"orderDate\": \"20170228163903\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170228161041\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58b5e751.PRJ58b5ea1c\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93129\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170228163903\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58b5f0a2.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93131\",\n        \"jobName\": \"Versions and Cost Breakouts\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170310150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170228165026\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58bed2c7.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93132\",\n        \"jobName\": \" Heritage Print Brochure-Reprint\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170308150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170322103959\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20170322103959\",\n        \"orderDate\": \"20170307104118\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170307103327\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58bed2c7.PRJ58bed2ca\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93132\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170228163903\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58bed5a3.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93133\",\n        \"jobName\": \"Heritage Test\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Heritage Test Project\",\n        \"projIndex\": \"Project_58bed63e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170308150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170308104556\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170309104558\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170316104600\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20170307105940\",\n        \"compDate\": \"20170307120000\",\n        \"createdDate\": \"20170307104539\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58bed5a3.PRJ58bed5ee\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1000.0\",\n        \"ordNum\": \"93133\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"200.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58c2952f.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93134\",\n        \"jobName\": \"Spark Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Spark Project\",\n        \"projIndex\": \"Project_58c29508.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170313150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170311070734\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170317070738\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170329070741\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170310070734\",\n        \"proofPlannedDate\": \"20170315070738\",\n        \"deliverPlannedDate\": \"20170329070741\",\n        \"orderDate\": \"20170310073833\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170310065943\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58c2952f.PRJ58c2997d\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93134\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170310073833\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58c2966c.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93135\",\n        \"jobName\": \"Spark Box\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Spark Project\",\n        \"projIndex\": \"Project_58c29508.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170313150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170310070500\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58c29fab.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93136\",\n        \"jobName\": \"Pier Posters-Reprint\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170313150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170310074427\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141017145330\",\n        \"orderSentDate\": \"20141017145450\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58c92534.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93138\",\n        \"jobName\": \"Boxmart Box\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Boxmart Project\",\n        \"projIndex\": \"Project_58c924ff.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170317150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170316072918\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170324072920\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170330072923\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170316072918\",\n        \"proofPlannedDate\": \"20170322072920\",\n        \"deliverPlannedDate\": \"20170329072923\",\n        \"orderDate\": \"20170315075832\",\n        \"compDate\": \"20170315120000\",\n        \"createdDate\": \"20170315072748\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58c92534.PRJ58c926d4\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2300.0\",\n        \"ordNum\": \"93138\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170315075832\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58c92edb.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93139\",\n        \"jobName\": \"Boxmart Box-Reprint\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170316150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170315080859\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170315075832\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58ca9e4c.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93140\",\n        \"jobName\": \"N2 Pub. Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"N2 Pub. Project\",\n        \"projIndex\": \"Project_58ca9e1f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170320150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170320101743\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170322101746\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170328101749\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170320101743\",\n        \"proofPlannedDate\": \"20170322101746\",\n        \"deliverPlannedDate\": \"20170328101749\",\n        \"orderDate\": \"20170316105128\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170316101644\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58ca9e4c.PRJ58caa135\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3400.0\",\n        \"ordNum\": \"93140\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170316105128\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-266.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58caa244.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93141\",\n        \"jobName\": \"N2 Pub. Test\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"N2 Pub. Project\",\n        \"projIndex\": \"Project_58ca9e1f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170317150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170316103340\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58caabf4.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93142\",\n        \"jobName\": \"53 Brochure \",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"53 Brochure Project\",\n        \"projIndex\": \"Project_58caabca.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170317150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170317112323\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170320112327\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170324112329\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170316111500\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58caabf4.PRJ58cab1a2\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58caac30.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93143\",\n        \"jobName\": \"53 Brochure Envelope\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"53 Brochure Project\",\n        \"projIndex\": \"Project_58caabca.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170317150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170316111600\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58cab4a3.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93144\",\n        \"jobName\": \"Job 2\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"Job 2\",\n        \"projIndex\": \"Project_58dbc7f8.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170317150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170323115308\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170523120000\",\n        \"createdDate\": \"20170316115203\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58cab620.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93145\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170323150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170323115855\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170329120000\",\n        \"createdDate\": \"20170316115824\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58d08cc9.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93146\",\n        \"jobName\": \"QA320-1\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"QA320-1\",\n        \"projIndex\": \"Project_58d08cca.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170322132000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170329000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170320221537\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58d134e0.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93147\",\n        \"jobName\": \"Test QA322\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Test QA322\",\n        \"projIndex\": \"Project_58d134e1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170322000000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170329000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170321101248\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58d17bce.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93148\",\n        \"jobName\": \"Paper Order: 3/21/17\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170322150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170523120000\",\n        \"createdDate\": \"20170321151526\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58d17bce.PRJ58d17bcf\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"60.50\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58d17c0b.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93149\",\n        \"jobName\": \"Paper Order: 3/21/17\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170322150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170523120000\",\n        \"createdDate\": \"20170321151627\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58d17c0b.PRJ58d17c0c\",\n        \"ordQuant\": \"100\",\n        \"ordPrice\": \"4.34\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58d28617.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93150\",\n        \"jobName\": \"PPD Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"PPD Project\",\n        \"projIndex\": \"Project_58d285e8.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170324150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170326101303\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170330101306\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170331101308\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170323101303\",\n        \"proofPlannedDate\": \"20170330101306\",\n        \"deliverPlannedDate\": \"20170331101308\",\n        \"orderDate\": \"20170322104046\",\n        \"compDate\": \"20170322120000\",\n        \"createdDate\": \"20170322101135\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58d28617.PRJ58d28822\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3800.0\",\n        \"ordNum\": \"93150\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170322104046\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-133.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58d29478.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93152\",\n        \"jobName\": \" PPD Brochure-Reprint 1\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170323150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170322111256\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170322104046\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58d3fbf8.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93153\",\n        \"jobName\": \"packlane Box\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Packlane Project\",\n        \"projIndex\": \"Project_58d40190.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170327150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170323124806\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20170324124809\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20170329124811\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20170323124806\",\n        \"proofPlannedDate\": \"20170324124809\",\n        \"deliverPlannedDate\": \"20170329124811\",\n        \"orderDate\": \"20170323132329\",\n        \"compDate\": \"20180720135346\",\n        \"createdDate\": \"20170323124648\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58d3fbf8.PRJ58d3ff09\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3800.0\",\n        \"ordNum\": \"232222\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170323132329\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1633.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58d40ebc.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93155\",\n        \"jobName\": \"Spring Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Spring Brochure Brochure\",\n        \"projIndex\": \"Project_58d40f0c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170324150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170324140928\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170327140930\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170331140933\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170324140928\",\n        \"proofPlannedDate\": \"20170327140930\",\n        \"deliverPlannedDate\": \"20170331140933\",\n        \"orderDate\": \"20170323143232\",\n        \"compDate\": \"20170602120000\",\n        \"createdDate\": \"20170323140652\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58d40ebc.PRJ58d4103a\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93155\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170323143232\",\n        \"orderSentDate\": \"20170323143254\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"750.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58d4154f.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93156\",\n        \"jobName\": \"[Copy ] Spring Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170324150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170323120000\",\n        \"createdDate\": \"20170323143455\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170323143232\",\n        \"orderSentDate\": \"20170323143254\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58d415d9.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93157\",\n        \"jobName\": \"[Copy ] Synq manual\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"4a1421ac\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170324150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170323143713\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58d417f4.PRJ\",\n        \"lastMod\": \"1557218852\",\n        \"jobNumber\": \"93158\",\n        \"jobName\": \"Spring Brochure - 20 pg\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20170323144649\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170323144612\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58d417f4.PRJ58d417f6\",\n        \"ordQuant\": \"20\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170323144649\",\n        \"orderSentDate\": \"20170323144657\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58d41a53.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93159\",\n        \"jobName\": \"Tree Manual Envelope\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Tree Manual Project\",\n        \"projIndex\": \"Project_58d41a21.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170324150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170331145627\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170323120000\",\n        \"createdDate\": \"20170323145619\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58d41a92.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93160\",\n        \"jobName\": \"Tree Manual Cover Letter\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Tree Manual Project\",\n        \"projIndex\": \"Project_58d41a21.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170324150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170405120000\",\n        \"createdDate\": \"20170323145722\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58dbb4d5.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93162\",\n        \"jobName\": \"Manual\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"47G New Manual\",\n        \"projIndex\": \"Project_58dbb478.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170330150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170330092159\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170331092202\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170331092205\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170330092159\",\n        \"proofPlannedDate\": \"20170331092202\",\n        \"deliverPlannedDate\": \"20170331092205\",\n        \"orderDate\": \"20170329100807\",\n        \"compDate\": \"20170329120000\",\n        \"createdDate\": \"20170329092125\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58dbb4d5.PRJ58dbb7e5\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93162\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170329100648\",\n        \"orderSentDate\": \"20170329100900\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"600.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58dbc31d.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93162\",\n        \"jobName\": \"Envelopes\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"47G New Manual\",\n        \"projIndex\": \"Project_58dbb478.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170330150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180313120000\",\n        \"createdDate\": \"20170329102221\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58dbc548.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93163\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170330150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170517120000\",\n        \"createdDate\": \"20170329103136\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58dbc581.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93164\",\n        \"jobName\": \"Project\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"QA4417\",\n        \"projIndex\": \"Project_58e29777.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170330150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170427144049\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170523120000\",\n        \"createdDate\": \"20170329103233\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58dbc8d0.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93165\",\n        \"jobName\": \"Paper Order: 3/29/17\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170330150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20170630200655\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20170629200652\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170629120000\",\n        \"createdDate\": \"20170329104640\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58dbc8d0.PRJ58dbc8d0\",\n        \"ordQuant\": \"100\",\n        \"ordPrice\": \"4.38\",\n        \"ordNum\": \"93165\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58deac13.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93166\",\n        \"jobName\": \"Teva Project\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Teva Project\",\n        \"projIndex\": \"Project_58deac13.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170331160000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170404000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170331152051\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58e4fb90.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93167\",\n        \"jobName\": \"The Foundry Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"The Foundry Project\",\n        \"projIndex\": \"Project_58e4fb55.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170410150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170412101423\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170419101426\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170426101428\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170412101423\",\n        \"proofPlannedDate\": \"20170419101426\",\n        \"deliverPlannedDate\": \"20170426101428\",\n        \"orderDate\": \"20170405103655\",\n        \"compDate\": \"20170405120000\",\n        \"createdDate\": \"20170405101336\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58e4fb90.PRJ58e4fd8f\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"93167\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170405103655\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58e503d7.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93169\",\n        \"jobName\": \"The Foundry Brochure-Reprint\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170406150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170405104855\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170405103655\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58ed13ea.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93170\",\n        \"jobName\": \"QATEST01-41117\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"QATEST01-41117\",\n        \"projIndex\": \"Project_58ed13ea.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170411130000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170418000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170411133538\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58f01da4.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93171\",\n        \"jobName\": \"QATEST413-1\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"QATEST413-1\",\n        \"projIndex\": \"Project_58f01da5.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170417101500\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170426000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170413205356\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58f784a9.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93172\",\n        \"jobName\": \"Vivid !nk Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Vivid !nk Project\",\n        \"projIndex\": \"Project_58f78477.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170421150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170420114119\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170421114122\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170430114125\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170420114119\",\n        \"proofPlannedDate\": \"20170421114122\",\n        \"deliverPlannedDate\": \"20170430114125\",\n        \"orderDate\": \"20170419121504\",\n        \"compDate\": \"20170419120000\",\n        \"createdDate\": \"20170419113921\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58f784a9.PRJ58f78759\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2400.0\",\n        \"ordNum\": \"93172\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170419121504\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58f78807.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93173\",\n        \"jobName\": \"Vivid !nk Test\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Vivid !nk Project\",\n        \"projIndex\": \"Project_58f78477.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170420150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170419115343\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58f78dd2.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93174\",\n        \"jobName\": \" Vivid !nk Brochure ver 2.\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170420150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170419121826\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58f78dd2.PRJ58f78dd5\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170419121504\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58f7aaae.PRJ\",\n        \"lastMod\": \"1634695794\",\n        \"jobNumber\": \"93175\",\n        \"jobName\": \"Cigna\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Cigna\",\n        \"projIndex\": \"Project_58f7ae2d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170420150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170427142241\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20170427142241\",\n        \"orderDate\": \"20170419144357\",\n        \"compDate\": \"20170419120000\",\n        \"createdDate\": \"20170419142134\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58f7aaae.PRJ58f7acd8\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170419144357\",\n        \"orderSentDate\": \"20170419144448\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58f8f4d3.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93176\",\n        \"jobName\": \"Packlane Brochure \",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Packlane Brochure 3\",\n        \"projIndex\": \"Project_58f8f477.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170424100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170426135143\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170425135147\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170427135150\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170426135143\",\n        \"proofPlannedDate\": \"20170425135147\",\n        \"deliverPlannedDate\": \"20170427135150\",\n        \"orderDate\": \"20170420144628\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170420135011\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58f8f4d3.PRJ58f8f919\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93176\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170420144519\",\n        \"orderSentDate\": \"20170420144605\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"600.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58f902ce.PRJ\",\n        \"lastMod\": \"1634695791\",\n        \"jobNumber\": \"93176\",\n        \"jobName\": \"Packlane Envelope\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Packlane Brochure 3\",\n        \"projIndex\": \"Project_58f8f477.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170421150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170420120000\",\n        \"createdDate\": \"20170420144950\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58f90490.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93177\",\n        \"jobName\": \"Packlane Brochure \",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Packlane TEST59\",\n        \"projIndex\": \"Project_5911cab6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170421150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170509095056\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20170509095056\",\n        \"orderDate\": \"20170509095640\",\n        \"compDate\": \"20180313120000\",\n        \"createdDate\": \"20170420145720\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58f90490.PRJ58f90494\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"10.0\",\n        \"ordNum\": \"93177\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170420144519\",\n        \"orderSentDate\": \"20170420144605\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"2.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"58ffa52b.PRJ\",\n        \"lastMod\": \"1634678591\",\n        \"jobNumber\": \"93178\",\n        \"jobName\": \"Car Fix\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Car Fix\",\n        \"projIndex\": \"Project_58ffa52c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170426100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170430000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20170430000000\",\n        \"orderDate\": \"20170518093644\",\n        \"compDate\": \"20180313120000\",\n        \"createdDate\": \"20170425153611\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"58ffa52b.PRJ58ffc0fd\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"1250.0\",\n        \"ordNum\": \"93178\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170425174823\",\n        \"orderSentDate\": \"20170425174835\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5900a70c.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93182\",\n        \"jobName\": \"47G Brochure1\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"47G Projects\",\n        \"projIndex\": \"Project_5900a6d7.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170427150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170427095757\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170428095800\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170429095803\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170427095757\",\n        \"proofPlannedDate\": \"20170428095800\",\n        \"deliverPlannedDate\": \"20170429095803\",\n        \"orderDate\": \"20170518085434\",\n        \"compDate\": \"20170502120000\",\n        \"createdDate\": \"20170426095628\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5900a70c.PRJ5900ab26\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"93182\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170502091640\",\n        \"orderSentDate\": \"20170502091752\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"850.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5900e2fe.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93183\",\n        \"jobName\": \"AOPA Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"AOPA Project\",\n        \"projIndex\": \"Project_5900e2cf.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170428150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170427141320\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170427141323\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170428141325\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170427141320\",\n        \"proofPlannedDate\": \"20170427141323\",\n        \"deliverPlannedDate\": \"20170428141325\",\n        \"orderDate\": \"20170426143815\",\n        \"compDate\": \"20170426120000\",\n        \"createdDate\": \"20170426141214\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5900e2fe.PRJ5900e4f3\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2300.0\",\n        \"ordNum\": \"2323232\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170426143815\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5900ea41.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93184\",\n        \"jobName\": \"AOPA Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170427150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170426144313\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170426143815\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59034e21.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93187\",\n        \"jobName\": \"Job Test MLB\",\n        \"custName\": \"Alliance Publishing & Marketing, Inc. - \",\n        \"custIndex\": \"53078802\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170501150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20170428101625\",\n        \"compDate\": \"20170428120000\",\n        \"createdDate\": \"20170428101353\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59034e21.PRJ59034e6e\",\n        \"ordQuant\": \"100\",\n        \"ordPrice\": \"850.0\",\n        \"ordNum\": \"93187\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170428101625\",\n        \"orderSentDate\": \"20170428101718\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59034fca.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93188\",\n        \"jobName\": \"MLB Test2\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"MLB Test2\",\n        \"projIndex\": \"Project_59034fa3.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170501150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180313120000\",\n        \"createdDate\": \"20170428102058\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59088853.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93190\",\n        \"jobName\": \"[Copy ] 47G Brochure1\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170503150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20170502092611\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170502092331\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59088853.PRJ590888a1\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1000.0\",\n        \"ordNum\": \"93190\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170502091640\",\n        \"orderSentDate\": \"20170502091752\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59088b4c.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93191\",\n        \"jobName\": \"47G-3\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170503150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170517093659\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170502093612\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5909a2a4.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93192\",\n        \"jobName\": \"fvwfwfwr\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"HDS Project\",\n        \"projIndex\": \"Project_5909a3d6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170504150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170510000000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170512052838\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"20170510000000\",\n        \"deliverPlannedDate\": \"20170512052838\",\n        \"orderDate\": \"20170511063309\",\n        \"compDate\": \"20170614120000\",\n        \"createdDate\": \"20170503052804\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5909a2a4.PRJ5909a34b\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93192\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170511063309\",\n        \"orderSentDate\": \"20170511063324\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"590ba08b.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93193\",\n        \"jobName\": \"Axis IQ Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Axis IQ Project\",\n        \"projIndex\": \"Project_590ba058.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170508150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170511174445\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170519174448\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170531174450\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170511174445\",\n        \"proofPlannedDate\": \"20170518174448\",\n        \"deliverPlannedDate\": \"20170524174450\",\n        \"orderDate\": \"20170504181508\",\n        \"compDate\": \"20170504120000\",\n        \"createdDate\": \"20170504174339\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"590ba08b.PRJ590ba272\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2400.0\",\n        \"ordNum\": \"93193\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170504181508\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1733.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5911e09e.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93198\",\n        \"jobName\": \"Paper Order: 5/9/17\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"47G New Manual\",\n        \"projIndex\": \"Project_58dbb478.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170510150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20170509113132\",\n        \"compDate\": \"20180313120000\",\n        \"createdDate\": \"20170509113038\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5911e09e.PRJ5911e09f\",\n        \"ordQuant\": \"2500\",\n        \"ordPrice\": \"294.53\",\n        \"ordNum\": \"93198\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170509113132\",\n        \"orderSentDate\": \"20170509113203\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"591332b8.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93199--Envelopes\",\n        \"jobName\": \"Emperor 2\",\n        \"custName\": \"First Midwest Bank - \",\n        \"custIndex\": \"53078806\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170510113314\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170510113312\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"591332b8.PRJ591332ba\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59137a8a.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93200\",\n        \"jobName\": \"Label\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \" Label Project\",\n        \"projIndex\": \"Project_59137d9c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170512150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170511164425\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170516164427\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170530000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170511164425\",\n        \"proofPlannedDate\": \"20170516164427\",\n        \"deliverPlannedDate\": \"20170530000000\",\n        \"orderDate\": \"20170510171408\",\n        \"compDate\": \"20170510120000\",\n        \"createdDate\": \"20170510163938\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59137a8a.PRJ59137bda\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93200\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170510171322\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1200.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5913855e.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93201\",\n        \"jobName\": \"Label---reprint\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170510172553\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170510172550\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170510171322\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5915c8d1.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93202\",\n        \"jobName\": \"Blair's Test Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Blair's Test Project\",\n        \"projIndex\": \"Project_5915c89a.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170517150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170515103904\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170522103907\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170525103910\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170515103904\",\n        \"proofPlannedDate\": \"20170517103907\",\n        \"deliverPlannedDate\": \"20170525103910\",\n        \"orderDate\": \"20170512111148\",\n        \"compDate\": \"20170512120000\",\n        \"createdDate\": \"20170512103809\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5915c8d1.PRJ5915cb2c\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2300.0\",\n        \"ordNum\": \"93202\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170512111148\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"750.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5915d17f.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93150\",\n        \"jobName\": \"PPD Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170512111512\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170512120000\",\n        \"createdDate\": \"20170512111511\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170322104046\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5915da14.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93203\",\n        \"jobName\": \"XYZ envelopes\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"XYZ Project\",\n        \"projIndex\": \"Project_5915d9fd.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170515150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170512115148\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5915da27.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93204\",\n        \"jobName\": \"XYZ Brochures\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"XYZ Project\",\n        \"projIndex\": \"Project_5915d9fd.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170515150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170512115207\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5919fe35.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93205\",\n        \"jobName\": \"NOW Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"NOW Project\",\n        \"projIndex\": \"Project_5919fe10.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170517150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170517151554\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170519151557\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170530151600\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170516151554\",\n        \"proofPlannedDate\": \"20170518151557\",\n        \"deliverPlannedDate\": \"20170530151600\",\n        \"orderDate\": \"20170515154133\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170515151501\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5919fe35.PRJ591a0078\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3600.0\",\n        \"ordNum\": \"93205\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170515154133\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"866.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"591c7db1.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93206\",\n        \"jobName\": \"Prescription Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Prescription Brochure\",\n        \"projIndex\": \"Project_591c7d75.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170518150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170519124334\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170522124338\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170526124341\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170519124334\",\n        \"proofPlannedDate\": \"20170522124338\",\n        \"deliverPlannedDate\": \"20170526124341\",\n        \"orderDate\": \"20170523114458\",\n        \"compDate\": \"20171101120000\",\n        \"createdDate\": \"20170517124329\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"591c7db1.PRJ591c7ecf\",\n        \"ordQuant\": \"35000\",\n        \"ordPrice\": \"8000.0\",\n        \"ordNum\": \"93206\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170523114458\",\n        \"orderSentDate\": \"20170523114557\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-1500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59234b9e.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"\",\n        \"jobName\": \"MACI.COM RMI Kit Introduction Letter\",\n        \"custName\": \"\",\n        \"custIndex\": \"\",\n        \"projName\": \"MACI.COM Request More Information Kit\",\n        \"projIndex\": \"Project_59234b42.xml\",\n        \"itemIndex\": \"5b5a2a00\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170523150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180726160829\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180726160847\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170522163542\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59234b9e.PRJ5b5a2a1a\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1234.0\",\n        \"ordNum\": \"2232\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180726160847\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59249862.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93209\",\n        \"jobName\": \"Alexion Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Alexion Project\",\n        \"projIndex\": \"Project_59249839.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170525150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170524161628\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170527161631\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170530161633\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170524161628\",\n        \"proofPlannedDate\": \"20170526161631\",\n        \"deliverPlannedDate\": \"20170530161633\",\n        \"orderDate\": \"20170523164713\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170523161530\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59249862.PRJ59249a9d\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93209\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170523164713\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59249f0e.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93209\",\n        \"jobName\": \"Alexion test\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Alexion Project\",\n        \"projIndex\": \"Project_59249839.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170524150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170523164358\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5924a31a.PRJ\",\n        \"lastMod\": \"1589846665\",\n        \"jobNumber\": \"93210\",\n        \"jobName\": \"Philips Brochure Redo\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170524150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170523170114\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20141223114013\",\n        \"orderSentDate\": \"20141223114237\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59318107.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93211\",\n        \"jobName\": \"Alexion Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Alexion Project\",\n        \"projIndex\": \"Project_5931809d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170605140000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170603111549\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170605111552\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170612111546\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170603111549\",\n        \"proofPlannedDate\": \"20170605111552\",\n        \"deliverPlannedDate\": \"20170612111546\",\n        \"orderDate\": \"20170602120143\",\n        \"compDate\": \"20180313120000\",\n        \"createdDate\": \"20170602111519\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59318107.PRJ59318570\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93211\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170602120143\",\n        \"orderSentDate\": \"20170602120547\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5936ec3e.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93213\",\n        \"jobName\": \"Now Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Now Project\",\n        \"projIndex\": \"Project_5936eb8d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170607100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170612135449\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170615135453\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170620135443\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170612135449\",\n        \"proofPlannedDate\": \"20170615135453\",\n        \"deliverPlannedDate\": \"20170620135443\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180313120000\",\n        \"createdDate\": \"20170606135406\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5936ec3e.PRJ5936effd\",\n        \"ordQuant\": \"4000\",\n        \"ordPrice\": \"4000.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1100.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5939948f.PRJ\",\n        \"lastMod\": \"1634678585\",\n        \"jobNumber\": \"93214\",\n        \"jobName\": \"Door Hanger\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Door Hanger\",\n        \"projIndex\": \"Project_593993c8.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170609150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170614141712\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20170614141712\",\n        \"orderDate\": \"20170621104224\",\n        \"compDate\": \"20180313120000\",\n        \"createdDate\": \"20170608141647\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5939948f.PRJ593995a8\",\n        \"ordQuant\": \"144\",\n        \"ordPrice\": \"850.0\",\n        \"ordNum\": \"93214\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170608144857\",\n        \"orderSentDate\": \"20170608145005\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5939a2f4.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93215\",\n        \"jobName\": \"Mosaic Labels\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Mosaic Project\",\n        \"projIndex\": \"Project_5939a2cb.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170612150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170614151926\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170622151928\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170630151930\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170614151926\",\n        \"proofPlannedDate\": \"20170621151928\",\n        \"deliverPlannedDate\": \"20170628151930\",\n        \"orderDate\": \"20170608154217\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170608151812\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5939a2f4.PRJ5939a466\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2400.0\",\n        \"ordNum\": \"93215\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170608154217\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1366.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5939ab1d.PRJ\",\n        \"lastMod\": \"1557218853\",\n        \"jobNumber\": \"93216\",\n        \"jobName\": \"Shepard Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170609150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170608155301\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160210115228\",\n        \"orderSentDate\": \"20160210115314\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"593afad5.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93218\",\n        \"jobName\": \"Caleb Test brochure\",\n        \"custName\": \"Pacific Insurance Co. - Lauren Hayes\",\n        \"custIndex\": \"54e20a03\",\n        \"projName\": \"Caleb Test brochure\",\n        \"projIndex\": \"Project_593afad6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170614000000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170621000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170609154525\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"593eea02.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93219\",\n        \"jobName\": \"Blair's Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Blair's Project\",\n        \"projIndex\": \"Project_593ee99d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170614150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170612152341\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170615152344\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170628152346\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170612152341\",\n        \"proofPlannedDate\": \"20170614152344\",\n        \"deliverPlannedDate\": \"20170628152346\",\n        \"orderDate\": \"20170612154957\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170612152242\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"593eea02.PRJ593eebd3\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93219\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170612154945\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"233.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"593ef4a3.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93220\",\n        \"jobName\": \"Paperworkz Brochure--Reprint\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170613150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170612160803\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20160322093509\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"593f09f5.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93221\",\n        \"jobName\": \"QATest6121\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"QATest6121\",\n        \"projIndex\": \"Project_593f09f6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170612232839\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20170612232839\",\n        \"orderDate\": \"20170612232855\",\n        \"compDate\": \"20171130120000\",\n        \"createdDate\": \"20170612173901\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"593f09f5.PRJ593f0a70\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"300.0\",\n        \"ordNum\": \"93221\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170612232855\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"593f0d2f.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93222\",\n        \"jobName\": \"QATest6122\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"QATest6122\",\n        \"projIndex\": \"Project_593f0d30.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170613000000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170620000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170612175247\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"593f5cfe.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93224\",\n        \"jobName\": \"QATest6124\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"QATest6124\",\n        \"projIndex\": \"Project_593f5cff.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170613000000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170617000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170612233318\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59416c0e.PRJ\",\n        \"lastMod\": \"1616404645\",\n        \"jobNumber\": \"93225\",\n        \"jobName\": \"Heritage Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Heritage Brochure\",\n        \"projIndex\": \"Project_59416c0f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170615100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170617000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20170617000000\",\n        \"orderDate\": \"20170614135153\",\n        \"compDate\": \"20170614120000\",\n        \"createdDate\": \"20170614130206\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59416c0e.PRJ59416d96\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1200.0\",\n        \"ordNum\": \"93225\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170614135153\",\n        \"orderSentDate\": \"20170614135312\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"400.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5941de5b.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93226\",\n        \"jobName\": \"Fuse Envelope\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Fuse Project\",\n        \"projIndex\": \"Project_5941da78.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170615150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170622213813\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20170622213813\",\n        \"orderDate\": \"20170614213837\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170614210947\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5941de5b.PRJ5941ded2\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1200.0\",\n        \"ordNum\": \"12111\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170614213837\",\n        \"orderSentDate\": \"20170614213852\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5941de7e.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93227\",\n        \"jobName\": \"Fuse t shirts\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Fuse Project\",\n        \"projIndex\": \"Project_5941da78.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170615150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170614211022\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5941de7e.PRJ5941df0c\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5941e0c2.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93228\",\n        \"jobName\": \"Fuse Door Hanger\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170615150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170614212002\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"594c3c1d.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93150\",\n        \"jobName\": \"PPD test\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"PPD Project\",\n        \"projIndex\": \"Project_58d285e8.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170623150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170622175229\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59519c5e.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93234\",\n        \"jobName\": \"AD Test Signage\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"AD Test Signage\",\n        \"projIndex\": \"Project_59519c26.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170627150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170628194455\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170629194452\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170626194430\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59558318.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93235\",\n        \"jobName\": \"[Copy ] QATest6122\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170630150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170629184544\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"595583e2.PRJ\",\n        \"lastMod\": \"1602887443\",\n        \"jobNumber\": \"93236\",\n        \"jobName\": \"ACC Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"ACC\",\n        \"projIndex\": \"Project_59558399.xml\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170630100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170629184933\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170629184930\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170630184921\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170629184933\",\n        \"proofPlannedDate\": \"20170629184930\",\n        \"deliverPlannedDate\": \"20170630184921\",\n        \"orderDate\": \"20170629195151\",\n        \"compDate\": \"20170809120000\",\n        \"createdDate\": \"20170629184906\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"595583e2.PRJ595588cf\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93236\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170629195151\",\n        \"orderSentDate\": \"20170629195245\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"595d688c.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93239\",\n        \"jobName\": \"Leap into Melbourne items\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Leap Into Melbourne Cup \",\n        \"projIndex\": \"Project_595d685c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170706150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170705183036\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"595d6ccc.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93240\",\n        \"jobName\": \"Leap Into Melbourne Cup A1 Poster\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Leap Into Melbourne Cup \",\n        \"projIndex\": \"Project_595d685c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170706150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170705184844\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"595d6d5e.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93241\",\n        \"jobName\": \"Leap Into Melbourne Cup Corflute\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Leap Into Melbourne Cup \",\n        \"projIndex\": \"Project_595d685c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170706150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170705185110\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"595d7152.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93239\",\n        \"jobName\": \"Leap Into Melbourne Cup \",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Leap Into Melbourne Cup \",\n        \"projIndex\": \"Project_595d685c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170706150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170705190802\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"595d7228.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93239\",\n        \"jobName\": \"Leap Into Melbourne Cup \",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Leap Into Melbourne Cup \",\n        \"projIndex\": \"Project_595d685c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170706150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170705191136\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"595d75d9.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93242\",\n        \"jobName\": \"DL\",\n        \"custName\": \"Buyer Corp - Joe Buyer\",\n        \"custIndex\": \"49f4e674\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170706150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170705192721\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"595d75d9.PRJ595d7605\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"595d837b.PRJ\",\n        \"lastMod\": \"1589846663\",\n        \"jobNumber\": \"93244\",\n        \"jobName\": \"In_Store--Canada - 28 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170705202531\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"595d837b.PRJ595d837d\",\n        \"ordQuant\": \"0\",\n        \"ordPrice\": \"0.00\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"596801b4.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93247\",\n        \"jobName\": \"Axis Brochure2\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Axis IQ2\",\n        \"projIndex\": \"Project_5968018a.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170718140000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170717192816\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170720192818\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170725192821\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170714192816\",\n        \"proofPlannedDate\": \"20170718192818\",\n        \"deliverPlannedDate\": \"20170725192821\",\n        \"orderDate\": \"20170713195951\",\n        \"compDate\": \"20170713120000\",\n        \"createdDate\": \"20170713192644\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"596801b4.PRJ5968043a\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2300.0\",\n        \"ordNum\": \"93247\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170713195951\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"600.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"596805e5.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93248\",\n        \"jobName\": \"Axis Envelopes2\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Axis IQ2\",\n        \"projIndex\": \"Project_5968018a.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170714150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170713194437\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59680ad4.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93249\",\n        \"jobName\": \"Axis Brochure2--Reprint\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170713200543\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170713200540\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170713195951\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5968105d.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"92947\",\n        \"jobName\": \"27 Degreestest\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"27 Degrees Project\",\n        \"projIndex\": \"Project_57348003.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170714150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170713202917\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"596810f3.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"92947\",\n        \"jobName\": \"27 Degrees test 2\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"27 Degrees Project\",\n        \"projIndex\": \"Project_57348003.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170714150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170713203147\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5981280f.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93253\",\n        \"jobName\": \"Dallas Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Dallas Project\",\n        \"projIndex\": \"Project_598127e0.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170803150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170802211826\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170809211828\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170823211831\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170801211703\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59812e6f.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93254\",\n        \"jobName\": \"Blair Test\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Blair Test\",\n        \"projIndex\": \"Project_59812e70.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170801214415\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"598981c2.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93255\",\n        \"jobName\": \"B46 Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"B46 Project\",\n        \"projIndex\": \"Project_59898159.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170810150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170809051848\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170817051851\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170825051853\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170809051848\",\n        \"proofPlannedDate\": \"20170816051851\",\n        \"deliverPlannedDate\": \"20170823051853\",\n        \"orderDate\": \"20170808054638\",\n        \"compDate\": \"20170808120000\",\n        \"createdDate\": \"20170808051754\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"598981c2.PRJ598983f0\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2300.0\",\n        \"ordNum\": \"93255\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170808054638\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1100.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59898ded.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93256\",\n        \"jobName\": \"B46 Brochure--Reprint\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170809150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170808060949\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170808054638\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59899009.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93255\",\n        \"jobName\": \"B46 brochure die cut\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"B46 Project\",\n        \"projIndex\": \"Project_59898159.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170809150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170808061849\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59899033.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93255\",\n        \"jobName\": \"B46 binding\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"B46 Project\",\n        \"projIndex\": \"Project_59898159.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170809150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170808061931\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5989c116.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93048\",\n        \"jobName\": \"Emperor 2 Envelope\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Emperor 2 Project\",\n        \"projIndex\": \"Project_58062665.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170809150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170808094806\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"598b2c82.PRJ\",\n        \"lastMod\": \"1634678578\",\n        \"jobNumber\": \"93258\",\n        \"jobName\": \"QA204\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"QA204\",\n        \"projIndex\": \"Project_598b2c53.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170810150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170810113853\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170811113855\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170817113849\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170810113853\",\n        \"proofPlannedDate\": \"20170811113855\",\n        \"deliverPlannedDate\": \"20170817113849\",\n        \"orderDate\": \"20170809114628\",\n        \"compDate\": \"20170809120000\",\n        \"createdDate\": \"20170809113842\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"598b2c82.PRJ598b2cce\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"20.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170809114628\",\n        \"orderSentDate\": \"20170809114643\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"598b89f5.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93259\",\n        \"jobName\": \"ACC Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"ACC Brochure\",\n        \"projIndex\": \"Project_598b892e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170810100000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20170810181856\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170811181859\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170815181902\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180522120000\",\n        \"createdDate\": \"20170809181725\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"598b8c2f.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93260\",\n        \"jobName\": \" ACC Brochure B\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"ACC Brochure\",\n        \"projIndex\": \"Project_598b892e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170810150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180522120000\",\n        \"createdDate\": \"20170809182655\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"598b9262.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93261\",\n        \"jobName\": \"Ratecard Test - Green\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20170823120000\",\n        \"createdDate\": \"20170809185322\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"598b9262.PRJ598b9263\",\n        \"ordQuant\": \"30\",\n        \"ordPrice\": \"300.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59960c44.PRJ\",\n        \"lastMod\": \"1557218854\",\n        \"jobNumber\": \"93263\",\n        \"jobName\": \"Label Choices Label\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Label Choices Project\",\n        \"projIndex\": \"Project_59960c1f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170821150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170818173803\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170824173806\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170831173808\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170817173604\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59960c44.PRJ59960df6\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"800.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"599613d6.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93263\",\n        \"jobName\": \"Label Choices test\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Label Choices Project\",\n        \"projIndex\": \"Project_59960c1f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170818150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170817180822\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"599da925.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93264\",\n        \"jobName\": \"Cogs-USA Project - Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Cogs-USA Project\",\n        \"projIndex\": \"Project_599da8a2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170824100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170830121208\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20170830121208\",\n        \"orderDate\": \"20170823131857\",\n        \"compDate\": \"20170906120000\",\n        \"createdDate\": \"20170823121117\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"599da925.PRJ599dab8a\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"4000.0\",\n        \"ordNum\": \"93264\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170823131857\",\n        \"orderSentDate\": \"20170823132242\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"599dbc37.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93265\",\n        \"jobName\": \"Test\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170824150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170824133306\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170823133239\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"599edafc.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93266\",\n        \"jobName\": \"Blair Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Blair Project\",\n        \"projIndex\": \"Project_599edad6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170828150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170825095641\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170830095644\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170831095647\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170825095641\",\n        \"proofPlannedDate\": \"20170830095644\",\n        \"deliverPlannedDate\": \"20170831095647\",\n        \"orderDate\": \"20170824102128\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170824095612\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"599edafc.PRJ599edce3\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2300.0\",\n        \"ordNum\": \"93266\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170824102128\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"550.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"599edefd.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93267\",\n        \"jobName\": \"Blair brochure 2\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Blair Project\",\n        \"projIndex\": \"Project_599edad6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170825150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170824101317\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"599ee2cf.PRJ\",\n        \"lastMod\": \"1561411114\",\n        \"jobNumber\": \"93268\",\n        \"jobName\": \"Meredith Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170825150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170824102935\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59a60503.PRJ\",\n        \"lastMod\": \"1589846660\",\n        \"jobNumber\": \"93270\",\n        \"jobName\": \"In_Store--Canada - 24 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170829202123\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59a60503.PRJ59a60505\",\n        \"ordQuant\": \"0\",\n        \"ordPrice\": \"0.00\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59a6066c.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93272\",\n        \"jobName\": \"FUSE Multiples\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"FUSE Test\",\n        \"projIndex\": \"Project_59a6064c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170830150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170829202724\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59a6066c.PRJ59a606bb\",\n        \"ordQuant\": \"8000\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"93272-1\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59a88fe4.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93273\",\n        \"jobName\": \"NextWave Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"NextWave Project\",\n        \"projIndex\": \"Project_59a88fb6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170904150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170905183946\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170912000000\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170915184004\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170905183946\",\n        \"proofPlannedDate\": \"20170912000000\",\n        \"deliverPlannedDate\": \"20170915184004\",\n        \"orderDate\": \"20170831190953\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170831183828\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59a88fe4.PRJ59a89238\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"1200.0\",\n        \"ordNum\": \"93273\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170831190953\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1000.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59a8982a.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93274\",\n        \"jobName\": \"ACC Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170831191348\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170831191346\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170629195151\",\n        \"orderSentDate\": \"20170629195245\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59b081fa.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93275\",\n        \"jobName\": \"Salmat 3 Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Salmat 3\",\n        \"projIndex\": \"Project_59b080fa.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170907150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170907191803\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170915191806\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170921191809\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170907191803\",\n        \"proofPlannedDate\": \"20170915191806\",\n        \"deliverPlannedDate\": \"20170921191809\",\n        \"orderDate\": \"20170906194134\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170906191714\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59b081fa.PRJ59b08427\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"30.0\",\n        \"ordNum\": \"93275\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170906194134\",\n        \"orderSentDate\": \"20170906194213\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59b0891a.PRJ\",\n        \"lastMod\": \"1644011580\",\n        \"jobNumber\": \"93275\",\n        \"jobName\": \"Salmat 3 Advanced\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Salmat 3\",\n        \"projIndex\": \"Project_59b080fa.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170907150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171117123745\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20171117123745\",\n        \"orderDate\": \"20201119155020\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170906194738\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59b0891a.PRJ59e6471f\",\n        \"ordQuant\": \"100\",\n        \"ordPrice\": \"200.00\",\n        \"ordNum\": \"93275\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180628164614\",\n        \"orderSentDate\": \"20220204154923\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"200.00\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59b08a4f.PRJ\",\n        \"lastMod\": \"1634678572\",\n        \"jobNumber\": \"93275\",\n        \"jobName\": \"Salmat 3 Multi-item\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Salmat 3\",\n        \"projIndex\": \"Project_59b080fa.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170907150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170905195323\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170907195321\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170907195316\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180522120000\",\n        \"createdDate\": \"20170906195247\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59b0958e.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93276\",\n        \"jobName\": \"[Copy ] AD Test Signage\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170907150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170628194455\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170629194452\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20170906204046\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59b7dd34.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93277\",\n        \"jobName\": \"Print Buddy Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Print Buddy Project\",\n        \"projIndex\": \"Project_59b7dcf8.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170914150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170913091327\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170920091330\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170928000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170913091327\",\n        \"proofPlannedDate\": \"20170920091330\",\n        \"deliverPlannedDate\": \"20170927000000\",\n        \"orderDate\": \"20170912093738\",\n        \"compDate\": \"20170912120000\",\n        \"createdDate\": \"20170912091220\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59b7dd34.PRJ59b7df13\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2300.0\",\n        \"ordNum\": \"93277\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20170912093738\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"933.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59b7e4c6.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93277-1\",\n        \"jobName\": \"Print Buddy Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170912094439\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20170912094438\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170912093738\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59c10266.PRJ\",\n        \"lastMod\": \"1571689804\",\n        \"jobNumber\": \"93278\",\n        \"jobName\": \"Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Dialect Project\",\n        \"projIndex\": \"Project_59c10176.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20170920150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20170921074342\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20170922074344\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20170927074347\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20170921074342\",\n        \"proofPlannedDate\": \"20170922074344\",\n        \"deliverPlannedDate\": \"20170927074347\",\n        \"orderDate\": \"20170919083732\",\n        \"compDate\": \"20170919120000\",\n        \"createdDate\": \"20170919074126\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59c10266.PRJ59c1070f\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93278\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20170919083732\",\n        \"orderSentDate\": \"20170919083835\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1233.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59e4fde8.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93280-1\",\n        \"jobName\": \"IBM Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"IBM Project\",\n        \"projIndex\": \"Project_59e4fda8.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171018150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171019144501\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171023144505\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171026144507\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20171025151133\",\n        \"orderDate\": \"20171016151020\",\n        \"compDate\": \"20171016120000\",\n        \"createdDate\": \"20171016144352\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59e4fde8.PRJ59e4ffbe\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2300.0\",\n        \"ordNum\": \"93280-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171016151020\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1149.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59e5071a.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93281\",\n        \"jobName\": \"IBM Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171017150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171016152306\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171016151020\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59e60a07.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93282-1\",\n        \"jobName\": \"Diversified Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Diversified Project\",\n        \"projIndex\": \"Project_59e6095b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171019150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171018095044\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171025095047\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171027095050\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20171017103010\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171017094751\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59e60a07.PRJ59e60ece\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"3400.0\",\n        \"ordNum\": \"93282-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171017103010\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"966.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59e60d28.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93282-2\",\n        \"jobName\": \"Diversified Envelope\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Diversified Project\",\n        \"projIndex\": \"Project_59e6095b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171018150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171019100121\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171020100124\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171026100126\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20171018100121\",\n        \"proofPlannedDate\": \"20171019100124\",\n        \"deliverPlannedDate\": \"20171027100126\",\n        \"orderDate\": \"20171017103223\",\n        \"compDate\": \"20171017120000\",\n        \"createdDate\": \"20171017100112\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59e60d28.PRJ59e60e74\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93282-2\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171017103223\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"150.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59e6159c.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93283\",\n        \"jobName\": \"Diversified Envelope-1\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"QATest101917\",\n        \"projIndex\": \"Project_59e8edfb.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Envelopes\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171018150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171026142934\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171017103716\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59e6159c.PRJ59e8eeb1\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"350.0\",\n        \"ordNum\": \"93283\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171017103223\",\n        \"orderSentDate\": \"20171019143005\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59e8aed6.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93282-3\",\n        \"jobName\": \"Diversified brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Diversified Project\",\n        \"projIndex\": \"Project_59e6095b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171020150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20171020095558\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171026095600\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171030095602\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171019095534\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59e8b196.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93286\",\n        \"jobName\": \"Paper Order: 10/19/17\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171020150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20171019100812\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171019100718\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59e8b196.PRJ59e8b196\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"722.15\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171019100812\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59e8ec29.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93287\",\n        \"jobName\": \"Paper Order: 10/19/17\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171020150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20171019141713\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59e8ec29.PRJ59e8ec2a\",\n        \"ordQuant\": \"1050\",\n        \"ordPrice\": \"626.90\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59e8ec9e.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93278-2\",\n        \"jobName\": \"Diadeis ProjectPaper\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Dialect Project\",\n        \"projIndex\": \"Project_59c10176.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171020150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171019141910\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59e8ec9e.PRJ5a962655\",\n        \"ordQuant\": \"100\",\n        \"ordPrice\": \"10.0\",\n        \"ordNum\": \"93278-2\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"5.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59e8eceb.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93288\",\n        \"jobName\": \"Paper Order: 10/19/17\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Dialect Project\",\n        \"projIndex\": \"Project_59c10176.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171020150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20171026142141\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20171019142151\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171019142027\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59e8eceb.PRJ59e8ecec\",\n        \"ordQuant\": \"1050\",\n        \"ordPrice\": \"626.9\",\n        \"ordNum\": \"93288\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20171019142151\",\n        \"orderSentDate\": \"20171019142213\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59e8ef62.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93290\",\n        \"jobName\": \"Paper Order: 10/19/17\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"QATest101917\",\n        \"projIndex\": \"Project_59e8edfb.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171020150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20171025143217\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20171019143245\",\n        \"compDate\": \"20180910120000\",\n        \"createdDate\": \"20171019143058\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59e8ef62.PRJ59e8ef63\",\n        \"ordQuant\": \"1050\",\n        \"ordPrice\": \"626.9\",\n        \"ordNum\": \"93290\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20171019143245\",\n        \"orderSentDate\": \"20171019143259\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59ee2ff4.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93291-1\",\n        \"jobName\": \"Saddleback Church Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Saddleback Church Project\",\n        \"projIndex\": \"Project_59ee2fb9.xml\",\n        \"itemIndex\": \"4bc1080c\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171025150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171024140841\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171026140845\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171027140849\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20171024143731\",\n        \"proofPlannedDate\": \"20171026143733\",\n        \"deliverPlannedDate\": \"20171027143735\",\n        \"orderDate\": \"20171023143611\",\n        \"compDate\": \"20171023120000\",\n        \"createdDate\": \"20171023140748\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59ee2ff4.PRJ59ee31c7\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2300.0\",\n        \"ordNum\": \"93291-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171023143611\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1033.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59ee3871.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93292\",\n        \"jobName\": \"Saddleback 50K BAPTISM CELEBRATION CERTIFICATES\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"5b61de84\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171024150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180926103651\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20180926103651\",\n        \"orderDate\": \"20180918103712\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171023144401\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59ee3871.PRJ59ee3873\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2435.0\",\n        \"ordNum\": \"93292\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171023143611\",\n        \"orderSentDate\": \"20180918103849\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59ee6cd1.PRJ\",\n        \"lastMod\": \"1589846652\",\n        \"jobNumber\": \"93293\",\n        \"jobName\": \"In_Store--Canada - 20 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171023182729\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59ee6cd1.PRJ59ee6cd2\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"450.00\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"32.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f09ae7.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93296-1\",\n        \"jobName\": \"ACE Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"ACE Project\",\n        \"projIndex\": \"Project_59f09ab9.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171027150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171027100923\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171027100926\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171031100929\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20171026100923\",\n        \"proofPlannedDate\": \"20171027100926\",\n        \"deliverPlannedDate\": \"20171031100929\",\n        \"orderDate\": \"20171025103616\",\n        \"compDate\": \"20171025120000\",\n        \"createdDate\": \"20171025100839\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59f09ae7.PRJ59f09cb4\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93296-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171025103616\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1133.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f0a2ce.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93297\",\n        \"jobName\": \"ACE Brochure--Rev.\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171026150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171025104222\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171025103616\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f0b6e3.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93299-1\",\n        \"jobName\": \"High Road Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"High Road Project\",\n        \"projIndex\": \"Project_59f0b5fa.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171026150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171025120824\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171031121822\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"20171025120824\",\n        \"deliverPlannedDate\": \"20171031121822\",\n        \"orderDate\": \"20171025121834\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171025120803\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59f0b6e3.PRJ59f0b74b\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93299-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171025121834\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f0e17f.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93300-1\",\n        \"jobName\": \"Blue Parachute Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Blaue Parachute Project\",\n        \"projIndex\": \"Project_59f0e112.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171027150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171030151049\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171030151052\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171031151054\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20171029151049\",\n        \"proofPlannedDate\": \"20171030151052\",\n        \"deliverPlannedDate\": \"20171031151054\",\n        \"orderDate\": \"20171025153243\",\n        \"compDate\": \"20171025120000\",\n        \"createdDate\": \"20171025150951\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59f0e17f.PRJ59f0e363\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2300.0\",\n        \"ordNum\": \"93300-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171025153243\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f0e7f1.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93301\",\n        \"jobName\": \"Blue Parachute Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171026150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171025153721\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171025153243\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f22dc4.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93302-1\",\n        \"jobName\": \"SGI Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"SGI Project\",\n        \"projIndex\": \"Project_59f22d63.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171030150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171027144830\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20171030144833\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20171031144835\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20171027144830\",\n        \"proofPlannedDate\": \"20171030144833\",\n        \"deliverPlannedDate\": \"20171031144835\",\n        \"orderDate\": \"20171026151400\",\n        \"compDate\": \"20171026120000\",\n        \"createdDate\": \"20171026144732\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59f22dc4.PRJ59f22f31\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93302-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171026151400\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1166.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f234d8.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93303\",\n        \"jobName\": \"SGI Brochure with Envelopes\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171027150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171026151744\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171026151400\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f2365f.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93304\",\n        \"jobName\": \"Paper Order: 10/26/17\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171027150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171026152415\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59f2365f.PRJ59f2365f\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2494.00\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f7b0f7.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93306-1\",\n        \"jobName\": \"Now Creations Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Now Creations Project\",\n        \"projIndex\": \"Project_59f7b0b9.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171102150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171031190929\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171103190934\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171113190941\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20171030193151\",\n        \"compDate\": \"20171030120000\",\n        \"createdDate\": \"20171030190839\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59f7b0f7.PRJ59f7b241\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93306-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171030193151\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"800.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f7b7b5.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93307\",\n        \"jobName\": \"Now Creations Brochure--Rev1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171031150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171030193725\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171030193151\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f8efe7.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93308-1\",\n        \"jobName\": \"Axis Brochure\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"Axis Project\",\n        \"projIndex\": \"Project_59f8ef2b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171101150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171108175048\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171109175056\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171116175030\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20171108175048\",\n        \"proofPlannedDate\": \"20171109175056\",\n        \"deliverPlannedDate\": \"20171116175030\",\n        \"orderDate\": \"20171031184539\",\n        \"compDate\": \"20171031120000\",\n        \"createdDate\": \"20171031174927\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59f8efe7.PRJ59f8f5c1\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93308-1\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20171031184539\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f8fffd.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93309\",\n        \"jobName\": \"Axis Brochure v2\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171101150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20171031185805\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171031184539\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f9e705.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93311-1\",\n        \"jobName\": \"HSP Diabetes Envelope\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"HSP Diabetes Mailing\",\n        \"projIndex\": \"Project_59f9e6a1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171102150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171103112400\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171107112404\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171122112406\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180221171342\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171101112349\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59f9e705.PRJ59f9e73c\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1100.0\",\n        \"ordNum\": \"93311-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171101160956\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1470.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f9e8a3.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93311-2\",\n        \"jobName\": \"HSP Diabetes Slim Jim Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"HSP Diabetes Mailing\",\n        \"projIndex\": \"Project_59f9e6a1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"13\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171102150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171103113052\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171108113054\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171120113057\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180109140405\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171101113043\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"59f9e8a3.PRJ59f9e8cf\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"3854.0\",\n        \"ordNum\": \"93311-2\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180109140405\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-286.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f9ee96.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93311-3\",\n        \"jobName\": \"HSP Diabetes T shirts\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"HSP Diabetes Mailing\",\n        \"projIndex\": \"Project_59f9e6a1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171102150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171103115616\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171108115618\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171122115621\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171101115606\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59f9f06a.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93312-1\",\n        \"jobName\": \"HSP Mock Mailing\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"HSP Mock Mailing\",\n        \"projIndex\": \"Project_59f9f03c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171102150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20171114120405\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171122120408\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171128120411\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171101120354\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59fa0ce1.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93312-2\",\n        \"jobName\": \"HSP Mock 16 page brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"HSP Mock Mailing\",\n        \"projIndex\": \"Project_59f9f03c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171102150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171101140521\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59fa0d83.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93312-3\",\n        \"jobName\": \"HSP Mock Mailing Collation and Mailing\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"HSP Mock Mailing\",\n        \"projIndex\": \"Project_59f9f03c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171102150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171122141612\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171101140803\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59fa2415.PRJ\",\n        \"lastMod\": \"1589846649\",\n        \"jobNumber\": \"93313\",\n        \"jobName\": \"Heritage Brochure--REV\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171102150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171101154421\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20170614135153\",\n        \"orderSentDate\": \"20170614135312\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"59fb7e0b.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93315\",\n        \"jobName\": \"Axis Manual\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Axis Manual\",\n        \"projIndex\": \"Project_59fb7e0d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171115000000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171121000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171102162027\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a021371.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93316\",\n        \"jobName\": \"Mileage Plus Brochure\",\n        \"custName\": \"Marketing - Sally Ride\",\n        \"custIndex\": \"52264056\",\n        \"projName\": \"Mileage Plus Brochure\",\n        \"projIndex\": \"Project_5a021373.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171129000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171107151129\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0b5bf2.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93317-1\",\n        \"jobName\": \"ASU Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"ASU Project\",\n        \"projIndex\": \"Project_5a0b5b5f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171116150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171115161210\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171122161213\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171128161216\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20171114163829\",\n        \"compDate\": \"20171114120000\",\n        \"createdDate\": \"20171114161114\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a0b5bf2.PRJ5a0b5daa\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93317-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171114163829\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1266.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0b6405.PRJ\",\n        \"lastMod\": \"1557218855\",\n        \"jobNumber\": \"93318\",\n        \"jobName\": \" ASU Brochure--REV1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171115150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171114164541\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171114163829\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0c666b.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93319-1\",\n        \"jobName\": \"GAF Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"GAF Project\",\n        \"projIndex\": \"Project_5a0c661c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171117150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171116110924\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171122110926\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171130110928\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20171115113238\",\n        \"compDate\": \"20171115120000\",\n        \"createdDate\": \"20171115110811\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a0c666b.PRJ5a0c6802\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"12111\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171115113238\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1866.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0c6d53.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93320\",\n        \"jobName\": \"GAF Brochure--REV1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"8\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171116150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171115113739\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171115113238\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0daa9f.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93322-1\",\n        \"jobName\": \"DAI Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"DAI Project\",\n        \"projIndex\": \"Project_5a0daa34.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171120150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171117101211\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171121101214\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171129101217\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20171116103812\",\n        \"compDate\": \"20171116120000\",\n        \"createdDate\": \"20171116101127\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a0daa9f.PRJ5a0dac48\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93322-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171116103812\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1033.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0db2ca.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93323\",\n        \"jobName\": \"DAI Brochure--REV. 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171117150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171116104618\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171116103812\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0db5e5.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93324\",\n        \"jobName\": \"Paper Order: 11/16/17\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171117150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171116105933\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a0db5e5.PRJ5a0db5e6\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"438.46\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0de858.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93325\",\n        \"jobName\": \"[Copy ] Axis Brochure v2\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171117150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20171116143448\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171031184539\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0de87d.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93326\",\n        \"jobName\": \"[Copy ] Axis Brochure\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171117150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20171116143525\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171031184539\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0ee224.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93328-1\",\n        \"jobName\": \"Southhampton Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Southhampton Project\",\n        \"projIndex\": \"Project_5a0ee1d5.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171122150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171120082145\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171122082149\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171129082151\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20171117084505\",\n        \"compDate\": \"20171117120000\",\n        \"createdDate\": \"20171117082036\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a0ee224.PRJ5a0ee3f8\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93328-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171117084505\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"600.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0ee982.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93329\",\n        \"jobName\": \"Southhampton Brochure--Rev. 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171120150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171117085202\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171117084505\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0eed2d.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93330\",\n        \"jobName\": \"Paper Order: 11/17/17\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171120150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171117090741\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a0eed2d.PRJ5a0eed2e\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"438.46\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0f10e5.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93331-1\",\n        \"jobName\": \"Education Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Education Project\",\n        \"projIndex\": \"Project_5a0f107f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171121150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171117114053\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171121114056\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171128114058\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20171117120702\",\n        \"compDate\": \"20171117120000\",\n        \"createdDate\": \"20171117114005\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a0f10e5.PRJ5a0f1302\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93331-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171117120702\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0f182e.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93332\",\n        \"jobName\": \"Education Brochure--REV 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171120150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171117121110\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171117120702\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a0f1aba.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93333\",\n        \"jobName\": \"Paper Order: 11/17/17\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171120150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171117122202\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a0f1aba.PRJ5a0f1abb\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"161.70\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a1db5b7.PRJ\",\n        \"lastMod\": \"1634678565\",\n        \"jobNumber\": \"93341\",\n        \"jobName\": \"Rob Brochure\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"Rob Brochure\",\n        \"projIndex\": \"Project_5a1db5b9.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Rob Yancich\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171128150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171130000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20171128141503\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a1eff58.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93342-1\",\n        \"jobName\": \"Spectrum Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Spectrum Project\",\n        \"projIndex\": \"Project_5a1eff32.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171130150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171130134236\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171205134239\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171219134246\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20171129120000\",\n        \"createdDate\": \"20171129134128\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a1eff58.PRJ5a1f0070\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a1f05fa.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93343\",\n        \"jobName\": \"Spectrum Brochure--REV 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171129140948\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171129140946\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a1f33b6.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93346\",\n        \"jobName\": \"QATest175\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"QATest175\",\n        \"projIndex\": \"Project_59f8c2d6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171130150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20171129172454\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a1f3450.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93347\",\n        \"jobName\": \"QATest175\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"QATest175\",\n        \"projIndex\": \"Project_59f8c2d6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171130150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20171129172728\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a1f3474.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93348-1\",\n        \"jobName\": \"ASU Project 1 Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"ASU Project 1\",\n        \"projIndex\": \"Project_5a1f3458.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171130150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171129172804\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a2084b6.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93349\",\n        \"jobName\": \"Spring Brochure - 16 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171130172310\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20171130172310\",\n        \"orderDate\": \"20171130172329\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20171130172246\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a2084b6.PRJ5a2084b7\",\n        \"ordQuant\": \"60\",\n        \"ordPrice\": \"256.0\",\n        \"ordNum\": \"93349\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20171130172329\",\n        \"orderSentDate\": \"20171130172403\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a2087c6.PRJ\",\n        \"lastMod\": \"1634678558\",\n        \"jobNumber\": \"93350-1\",\n        \"jobName\": \"Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"AxisIQ Project\",\n        \"projIndex\": \"Project_5a20876f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171201150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171130184112\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20171130184112\",\n        \"orderDate\": \"20171130184125\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20171130173550\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a2087c6.PRJ5a2088b5\",\n        \"ordQuant\": \"6000\",\n        \"ordPrice\": \"150.0\",\n        \"ordNum\": \"93350-1\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20171130184125\",\n        \"orderSentDate\": \"20171130184238\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a2089fb.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93350-2\",\n        \"jobName\": \"Envelope\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171201150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20171130174515\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a2089fb.PRJ5a208b30\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"400.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"37.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a20922a.PRJ\",\n        \"lastMod\": \"1634678559\",\n        \"jobNumber\": \"93350-2\",\n        \"jobName\": \"Envelope\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"AxisIQ Project\",\n        \"projIndex\": \"Project_5a20876f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20171130184306\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20171130184306\",\n        \"orderDate\": \"20171130184311\",\n        \"compDate\": \"20180403133614\",\n        \"createdDate\": \"20171130182010\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a20922a.PRJ5a209616\",\n        \"ordQuant\": \"70\",\n        \"ordPrice\": \"272.0\",\n        \"ordNum\": \"93350-2\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20171130184311\",\n        \"orderSentDate\": \"20171130184344\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"2.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a2097f5.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93350-3\",\n        \"jobName\": \"Mailer\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171201150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180522120000\",\n        \"createdDate\": \"20171130184453\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a2097f5.PRJ5a209899\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a209960.PRJ\",\n        \"lastMod\": \"1634678560\",\n        \"jobNumber\": \"93350-3\",\n        \"jobName\": \"Cover Letter\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"AxisIQ Project\",\n        \"projIndex\": \"Project_5a20876f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180628163812\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180628164148\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171130185056\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a209960.PRJ5a209a0c\",\n        \"ordQuant\": \"60\",\n        \"ordPrice\": \"245.0\",\n        \"ordNum\": \"93350-3\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180628164148\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"4.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a25738a.PRJ\",\n        \"lastMod\": \"1634678553\",\n        \"jobNumber\": \"93351-1\",\n        \"jobName\": \"Brochure\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"QA Proj-rate\",\n        \"projIndex\": \"Project_5a2090f0.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171205150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171230111117\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180103120000\",\n        \"createdDate\": \"20171204111050\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"*\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a25759d.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93351-2\",\n        \"jobName\": \"Envelope\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171205150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171215111950\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180522120000\",\n        \"createdDate\": \"20171204111941\",\n        \"numBidders\": \"2\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a2580a3.PRJ\",\n        \"lastMod\": \"1634678554\",\n        \"jobNumber\": \"93351-2\",\n        \"jobName\": \"Envelope\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"QA Proj-rate\",\n        \"projIndex\": \"Project_5a2090f0.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171205000000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180402134654\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20180328134654\",\n        \"orderDate\": \"20180321135000\",\n        \"compDate\": \"20180321141052\",\n        \"createdDate\": \"20171204120643\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a2580a3.PRJ5a258113\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"750.0\",\n        \"ordNum\": \"93351-2\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180321135000\",\n        \"orderSentDate\": \"20180321135039\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-56.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a26fec6.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93353-1\",\n        \"jobName\": \"Vestcom 2 Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Vestcom 2 Project\",\n        \"projIndex\": \"Project_5a26f966.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171206150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171206151905\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171214151907\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171227151909\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20171205153412\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171205151710\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a26fec6.PRJ5a26ff4d\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2300.0\",\n        \"ordNum\": \"3535352\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171205153412\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"450.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a30007f.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93356-1\",\n        \"jobName\": \"ASU2 Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"ASU2 Project\",\n        \"projIndex\": \"Project_5a300047.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171214150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171213111543\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171219111546\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171227000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20171213111543\",\n        \"proofPlannedDate\": \"20171220111546\",\n        \"deliverPlannedDate\": \"20171224000000\",\n        \"orderDate\": \"20171212114709\",\n        \"compDate\": \"20171212120000\",\n        \"createdDate\": \"20171212111455\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a30007f.PRJ5a30021c\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"323232\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171212114709\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"50.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a300987.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93357\",\n        \"jobName\": \"ASU2 Brochure--Reprint\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171213150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171212115327\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171212114709\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a300c06.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93358\",\n        \"jobName\": \"Paper Order: 12/12/17\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171213150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171212120406\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a300c06.PRJ5a300c07\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"109.87\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a344a73.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93359-1\",\n        \"jobName\": \"James Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"James Project\",\n        \"projIndex\": \"Project_5a344a49.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171219150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171218172024\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171220172027\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171228172031\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20171215175922\",\n        \"compDate\": \"20171215120000\",\n        \"createdDate\": \"20171215171931\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a344a73.PRJ5a344d82\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93359-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171215175922\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"500.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a345496.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93360\",\n        \"jobName\": \"James Brochure 2019\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171218150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20171215180314\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171220180316\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171227180319\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171215180246\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171215175922\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a3d3cb7.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93361-1\",\n        \"jobName\": \"SRCA Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"SRCA Project\",\n        \"projIndex\": \"Project_5a3d3c70.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171227150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20171227121219\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20171230121222\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20171231121224\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20171227121219\",\n        \"proofPlannedDate\": \"20171229121222\",\n        \"deliverPlannedDate\": \"20171231121224\",\n        \"orderDate\": \"20171222123534\",\n        \"compDate\": \"20171222120000\",\n        \"createdDate\": \"20171222121119\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a3d3cb7.PRJ5a3d3e5b\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93361-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20171222123534\",\n        \"orderSentDate\": \"20171222123917\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"227.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a3d44b2.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93362\",\n        \"jobName\": \"SRCA Brochure--REV. 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20171225150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20171222124522\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a3d44b2.PRJ5a3d44b4\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20171222123534\",\n        \"orderSentDate\": \"20171222123917\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a4f8f06.PRJ\",\n        \"lastMod\": \"1634695732\",\n        \"jobNumber\": \"93364-1\",\n        \"jobName\": \"Ricoh/RSA  Workflow Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Ricoh/RSA Project\",\n        \"projIndex\": \"Project_5a4f8e51.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"Booklets\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180108150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180109115442\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180110115445\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180119115449\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180109115442\",\n        \"proofPlannedDate\": \"20180110115445\",\n        \"deliverPlannedDate\": \"20180119115449\",\n        \"orderDate\": \"20180105121044\",\n        \"compDate\": \"20180105120000\",\n        \"createdDate\": \"20180105094318\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a4f8f06.PRJ5a4f9144\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93364-1\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180105121044\",\n        \"orderSentDate\": \"20180105121135\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"858.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a5521ee.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93365-1\",\n        \"jobName\": \"Brightspark Envelope\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Brightspark Project\",\n        \"projIndex\": \"Project_5a552190.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180112150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180111151220\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180116151225\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180123151227\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180109154026\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180109151126\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a5521ee.PRJ5a5522a7\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"675.0\",\n        \"ordNum\": \"93365-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180109154026\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"179.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a5522fd.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93365-2\",\n        \"jobName\": \"Brightspark Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Brightspark Project\",\n        \"projIndex\": \"Project_5a552190.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180110150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180109154235\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180109154243\",\n        \"compDate\": \"20180109120000\",\n        \"createdDate\": \"20180109151557\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a5522fd.PRJ5a552420\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3300.0\",\n        \"ordNum\": \"93365-2\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180109154243\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"11.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a5e3132.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93367-1\",\n        \"jobName\": \"Gotham Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Gotham Project\",\n        \"projIndex\": \"Project_5a5e30fd.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180118150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180119120801\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180122120808\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180125120811\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180116123044\",\n        \"compDate\": \"20180116120000\",\n        \"createdDate\": \"20180116120658\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a5e3132.PRJ5a5e333e\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93367-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180116123044\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"649.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a5e37f2.PRJ\",\n        \"lastMod\": \"1557218856\",\n        \"jobNumber\": \"93368\",\n        \"jobName\": \"Gotham Brochure--REV 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180117150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180116123546\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180116123044\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a69f978.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93376\",\n        \"jobName\": \"Sprint Enrollment Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Sprint Enrollment Brochure\",\n        \"projIndex\": \"Project_5a69f979.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180118130000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180125000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180125103624\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a6b3247.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93377-1\",\n        \"jobName\": \"Excela Sales Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Excela Sales Project\",\n        \"projIndex\": \"Project_5a6b321b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180126153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20180126085119\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180129085121\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180214085124\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180126085103\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a733a23.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93381-1\",\n        \"jobName\": \"AHDA Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"AHDA Project\",\n        \"projIndex\": \"Project_5a7339fa.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180202153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180205111011\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180214111014\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180221111017\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20180202111011\",\n        \"proofPlannedDate\": \"20180213111014\",\n        \"deliverPlannedDate\": \"20180221111017\",\n        \"orderDate\": \"20180201113853\",\n        \"compDate\": \"20180201120000\",\n        \"createdDate\": \"20180201110243\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a733a23.PRJ5a733ec5\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"3300.0\",\n        \"ordNum\": \"93381-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180201113853\",\n        \"orderSentDate\": \"20180201113955\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"384.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a733bce.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93381-2\",\n        \"jobName\": \"AHDA Brochure A\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"AHDA Project\",\n        \"projIndex\": \"Project_5a7339fa.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180201153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180201110950\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a7343ac.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93382\",\n        \"jobName\": \" AHDA Brochure--REV. 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180201153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180201114324\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180201113853\",\n        \"orderSentDate\": \"20180201113955\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a73a5b6.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93383-1\",\n        \"jobName\": \"Promosapiens T-Shirt Job\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Promosapiens Projecct\",\n        \"projIndex\": \"Project_5a73a566.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180202153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180207184241\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180215184244\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180220184247\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20180206184241\",\n        \"proofPlannedDate\": \"20180214184244\",\n        \"deliverPlannedDate\": \"20180220184247\",\n        \"orderDate\": \"20180201192713\",\n        \"compDate\": \"20180201120000\",\n        \"createdDate\": \"20180201184142\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a73a5b6.PRJ5a73a848\",\n        \"ordQuant\": \"250\",\n        \"ordPrice\": \"250.0\",\n        \"ordNum\": \"93383-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180201192713\",\n        \"orderSentDate\": \"20180201192823\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"127.75\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a73ac80.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93383-2\",\n        \"jobName\": \"Promosapiens Pens Job\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Promosapiens Projecct\",\n        \"projIndex\": \"Project_5a73a566.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180201153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180201191040\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a73b270.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93384\",\n        \"jobName\": \"Promosapiens T-Shirt Job-REV 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"6\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180201153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180201193600\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180201192713\",\n        \"orderSentDate\": \"20180201192823\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a7ca1d0.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"00093386\",\n        \"jobName\": \"Blair's test\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Blair's test\",\n        \"projIndex\": \"Project_5a7ca1d1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20181018120000\",\n        \"createdDate\": \"20180208141528\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a7cada4.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"00093388\",\n        \"jobName\": \"DCRI Test Project\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"DCRI Test Project\",\n        \"projIndex\": \"Project_5a7cada6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180209000000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180220000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20181018120000\",\n        \"createdDate\": \"20180208150556\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a85ecb4.PRJ\",\n        \"lastMod\": \"1634695729\",\n        \"jobNumber\": \"93389-1\",\n        \"jobName\": \"Heart Project Envelope\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Heart Project\",\n        \"projIndex\": \"Project_5a85eaf2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180216100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180216152613\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180219152619\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180223152622\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20180216152613\",\n        \"proofPlannedDate\": \"20180219152619\",\n        \"deliverPlannedDate\": \"20180223152622\",\n        \"orderDate\": \"20180215154415\",\n        \"compDate\": \"20180215120000\",\n        \"createdDate\": \"20180215152524\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a85ecb4.PRJ5a85eea3\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93389-1\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180215154415\",\n        \"orderSentDate\": \"20180215154934\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"150.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a85f2e3.PRJ\",\n        \"lastMod\": \"1638896255\",\n        \"jobNumber\": \"93390\",\n        \"jobName\": \"Heart Project Envelope v2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Heart Project Mailing\",\n        \"projIndex\": \"Project_5b7efb9a.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180216150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180215155147\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180215154415\",\n        \"orderSentDate\": \"20180215154934\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a85f337.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93391\",\n        \"jobName\": \"[Copy ] Heart Project Envelope\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180215155313\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180216155340\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20180216155340\",\n        \"orderDate\": \"20180215155350\",\n        \"compDate\": \"20180522120000\",\n        \"createdDate\": \"20180215155311\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a85f337.PRJ5a85f339\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93391\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180215154415\",\n        \"orderSentDate\": \"20180215154934\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"150.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a861201.PRJ\",\n        \"lastMod\": \"1657508970\",\n        \"jobNumber\": \"93211-2\",\n        \"jobName\": \"Alexion Project\",\n        \"custName\": \"Pacific Insurance Co.\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Alexion Project\",\n        \"projIndex\": \"Project_5931809d.xml\",\n        \"itemIndex\": \"5ad0b9e1\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"500990318031312\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180604102821\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180606102825\",\n        \"proofFinal\": \"\",\n        \"deliveryDate\": \"20180611102817\",\n        \"deliveryFinal\": \"\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180628165051\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180215180433\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a861201.PRJ5b115a19\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1200.0\",\n        \"ordNum\": \"5565\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"26090701210245\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a861308.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93211-3\",\n        \"jobName\": \"Alexion Project\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Alexion Project\",\n        \"projIndex\": \"Project_5931809d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180216150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180215180856\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a8b1a98.PRJ\",\n        \"lastMod\": \"1634695611\",\n        \"jobNumber\": \"93394\",\n        \"jobName\": \"Citibank Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Citibank brochure\",\n        \"projIndex\": \"Project_5a8b1a99.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180221100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180226000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180227175459\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180219134232\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a8b1a98.PRJ5a8b1bcf\",\n        \"ordQuant\": \"15000\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180227175459\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a8b22dc.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"00093395\",\n        \"jobName\": \"Chase Bank Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Chase Bank Brochure\",\n        \"projIndex\": \"Project_5a8b22de.xml\",\n        \"itemIndex\": \"5b61de84\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180220000000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180223000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180219141748\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a8c47ef.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"00093396\",\n        \"jobName\": \"Integra Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Integra Brochure\",\n        \"projIndex\": \"Project_5a8c47f1.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180221000000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180227000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180726155654\",\n        \"compDate\": \"20181018120000\",\n        \"createdDate\": \"20180220110815\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a8c47ef.PRJ5b560b29\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"5647.0\",\n        \"ordNum\": \"00093396\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180726155654\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a8cb36c.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93398-1\",\n        \"jobName\": \"Semcom Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Semcom Project\",\n        \"projIndex\": \"Project_5a8cb342.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180222153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180224000000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180227184758\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180228184801\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20180223184754\",\n        \"proofPlannedDate\": \"20180226184758\",\n        \"deliverPlannedDate\": \"20180228184801\",\n        \"orderDate\": \"20180220191749\",\n        \"compDate\": \"20180220120000\",\n        \"createdDate\": \"20180220184652\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a8cb36c.PRJ5a8cb5a9\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93398-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180220191749\",\n        \"orderSentDate\": \"20180220191903\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"73.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a8cc14e.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93399\",\n        \"jobName\": \"Semcom Brochure--REV 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180220153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180220194606\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180220191749\",\n        \"orderSentDate\": \"20180220191903\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a8dd27e.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93400\",\n        \"jobName\": \"SEMCOM BROCHURE\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"SEMCOM BROCHURE\",\n        \"projIndex\": \"Project_5a8dd281.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180221151142\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a8df622.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"00093401\",\n        \"jobName\": \"Salmat Test\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Salmat Test\",\n        \"projIndex\": \"Project_5a8df624.xml\",\n        \"itemIndex\": \"4b0426e7\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180222000000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180223000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180221174346\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a95dab5.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93402-1\",\n        \"jobName\": \"AHA Envelope\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"AHA Project\",\n        \"projIndex\": \"Project_5a95da73.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180228150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180228172626\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180205172727\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180214172730\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180228172626\",\n        \"proofPlannedDate\": \"20180205172727\",\n        \"deliverPlannedDate\": \"20180214172730\",\n        \"orderDate\": \"20180319163022\",\n        \"compDate\": \"20180319163407\",\n        \"createdDate\": \"20180227172453\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5a95dab5.PRJ5aabde66\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"175.0\",\n        \"ordNum\": \"93402-1\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180319163022\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a96c865.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93403\",\n        \"jobName\": \"CMP -2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"CMP -2\",\n        \"projIndex\": \"Project_5a96c86b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180302104524\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20180306104539\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180314104552\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180228101901\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a96cf23.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"00093404\",\n        \"jobName\": \"CMP -3\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"CMP -3\",\n        \"projIndex\": \"Project_5a96cf28.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180228104747\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5a9ad06e.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93406-1\",\n        \"jobName\": \"Yale Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Yale Project\",\n        \"projIndex\": \"Project_5a9ad043.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180305153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180308114256\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180313114302\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180321114306\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180303114222\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5aa7e97c.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93410-1\",\n        \"jobName\": \"Groupo Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Groupo Project\",\n        \"projIndex\": \"Project_5aa7e940.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"Booklets\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180314150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180314110933\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180319110935\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180323110939\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180314110933\",\n        \"proofPlannedDate\": \"20180319110935\",\n        \"deliverPlannedDate\": \"20180323110939\",\n        \"orderDate\": \"20180313114632\",\n        \"compDate\": \"20180313115059\",\n        \"createdDate\": \"20180313110844\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5aa7e97c.PRJ5aa7eb9b\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93410-1\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180313114632\",\n        \"orderSentDate\": \"20180313114759\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"150.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5aa7f3d6.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93411\",\n        \"jobName\": \"Groupo Brochure 2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180314150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180403120000\",\n        \"createdDate\": \"20180313115254\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180313114632\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5aa82337.PRJ\",\n        \"lastMod\": \"1638896253\",\n        \"jobNumber\": \"93412-1\",\n        \"jobName\": \"QA Test 101A\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"QA Test 101\",\n        \"projIndex\": \"Project_5aa822eb.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"caleb.tower@p3expeditor.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180314150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180629124232\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20180629124232\",\n        \"orderDate\": \"20201125192248\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180313151503\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5aa82337.PRJ5b350c88\",\n        \"ordQuant\": \"200\",\n        \"ordPrice\": \"300.00\",\n        \"ordNum\": \"93412-1\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180628124125\",\n        \"orderSentDate\": \"20201125192302\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"300.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ab0211c.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93413\",\n        \"jobName\": \"Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Brochure\",\n        \"projIndex\": \"Project_5ab0211e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180320120000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180326000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180319164412\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ab40e86.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93414-1\",\n        \"jobName\": \"AWI Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"AWI Project\",\n        \"projIndex\": \"Project_5ab40e62.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180323153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20180326161629\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180328161633\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180330161635\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180322161358\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ab95d20.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93415-1\",\n        \"jobName\": \"ACUP Pocket Folder\",\n        \"custName\": \"P3 Software - Blair Weidig\",\n        \"custIndex\": \"5ab95cb8\",\n        \"projName\": \"ACUP Project\",\n        \"projIndex\": \"Project_5ab95c8d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180326153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180409171226\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180411171248\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180418171307\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180419123110\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180326165040\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"5\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5ab95d20.PRJ5ab96083\",\n        \"ordQuant\": \"500\",\n        \"ordPrice\": \"997.0\",\n        \"ordNum\": \"93415-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180419123110\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"238.978\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5aba8177.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93416-1\",\n        \"jobName\": \"Test Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Test Project--\",\n        \"projIndex\": \"Project_5aba814e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180327153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20180328133810\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180328133813\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180329133816\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180327133759\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5abbdaeb.PRJ\",\n        \"lastMod\": \"1634695781\",\n        \"jobNumber\": \"93417-1\",\n        \"jobName\": \"IMH Providers Brochure\",\n        \"custName\": \"Ford Motor Company - Blair Weidig\",\n        \"custIndex\": \"5cc36865\",\n        \"projName\": \"IMH Providers Project\",\n        \"projIndex\": \"Project_5abbda2b.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Booklets\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180329150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180402141212\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180403141237\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180410141250\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180402141212\",\n        \"proofPlannedDate\": \"20180403141237\",\n        \"deliverPlannedDate\": \"20180410141250\",\n        \"orderDate\": \"20180328154451\",\n        \"compDate\": \"20180328155142\",\n        \"createdDate\": \"20180328141155\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5abbdaeb.PRJ5abbddba\",\n        \"ordQuant\": \"5000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93417-1\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180328154451\",\n        \"orderSentDate\": \"20180328154756\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"750.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5abbf2fa.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93418\",\n        \"jobName\": \"[Copy ] Yale Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180329150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180522120000\",\n        \"createdDate\": \"20180328155434\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ac3aa80.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93419-1\",\n        \"jobName\": \"Group 4 Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Group 4 Project\",\n        \"projIndex\": \"Project_5ac3aa38.xml\",\n        \"itemIndex\": \"58aef3c7\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Folders Full Color\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180404150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20181120122623\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20181121122627\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20181126122616\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20181120122623\",\n        \"proofPlannedDate\": \"20181121122627\",\n        \"deliverPlannedDate\": \"20181126122616\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20181212101044\",\n        \"createdDate\": \"20180403122328\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5ac3aa80.PRJ5ac3adde\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93419-1\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180403131816\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"738.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ac3bc18.PRJ\",\n        \"lastMod\": \"1635986572\",\n        \"jobNumber\": \"93420\",\n        \"jobName\": \"AHA Kit\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"caleb.tower@p3expeditor.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Kits\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180404150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20201022192734\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20201120143414\",\n        \"compDate\": \"20210423162153\",\n        \"createdDate\": \"20180403133832\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5ac3bc18.PRJ5ac7d357\",\n        \"ordQuant\": \"1500\",\n        \"ordPrice\": \"76.0\",\n        \"ordNum\": \"93420\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180406160822\",\n        \"orderSentDate\": \"20201120143715\",\n        \"extAcctSync\": \"5\",\n        \"finalPrice\": \"76.00\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ac52342.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93421\",\n        \"jobName\": \"IHC Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180405140000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180405151336\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180406151339\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180411151341\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180405151336\",\n        \"proofPlannedDate\": \"20180406151339\",\n        \"deliverPlannedDate\": \"20180411151341\",\n        \"orderDate\": \"20180404154122\",\n        \"compDate\": \"20180404155401\",\n        \"createdDate\": \"20180404151058\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5ac52342.PRJ5ac52753\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93421\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180404154122\",\n        \"orderSentDate\": \"20180404154314\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1266.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ac52bd4.PRJ\",\n        \"lastMod\": \"1668549206\",\n        \"jobNumber\": \"93422\",\n        \"jobName\": \"IHC Brochure v2 x\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180405150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180404154732\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180404154122\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"0.00\",\n        \"savingsAmt\": \"0.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ac5f6e4.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93423-1\",\n        \"jobName\": \"Leopard Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Leopard Project\",\n        \"projIndex\": \"Project_5ac5f6a7.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180406153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180411061454\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180412061457\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180417061500\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180409061454\",\n        \"proofPlannedDate\": \"20180411061457\",\n        \"deliverPlannedDate\": \"20180417061500\",\n        \"orderDate\": \"20180405064202\",\n        \"compDate\": \"20180405065502\",\n        \"createdDate\": \"20180405061356\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5ac5f6e4.PRJ5ac5f8d0\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93423-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180405064202\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"207.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ac600f7.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93424\",\n        \"jobName\": \"Leopard Brochure--REV. 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180405153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180405065655\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180405064202\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ac783c6.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93425\",\n        \"jobName\": \"Easy Spec Test 15\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Easy Spec Test 15\",\n        \"projIndex\": \"Project_5ac783c7.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180406102718\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ac78566.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"00093426\",\n        \"jobName\": \"Duke Form Test 1\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Duke Form Test 1\",\n        \"projIndex\": \"Project_5ac7856e.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180406103414\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ac78b61.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"00093427\",\n        \"jobName\": \"Duke Form Test2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Duke Form Test2\",\n        \"projIndex\": \"Project_5ac78b69.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20180410000000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180417000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180406105945\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ac7a9f3.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93428-1\",\n        \"jobName\": \"[Copy ] Leopard Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Leopard Project\",\n        \"projIndex\": \"Project_5ac7a9ee.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180406153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180406131011\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180405064202\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ac7ab96.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93429-1\",\n        \"jobName\": \"Valere Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Valere Project\",\n        \"projIndex\": \"Project_5ac7ab75.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180406153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180406131710\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ac7ac43.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93430-1\",\n        \"jobName\": \"[Copy ] ASU Project 1 Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"ASU Project 1\",\n        \"projIndex\": \"Project_5ac7ac42.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180406132005\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180406132003\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ac7ad58.PRJ\",\n        \"lastMod\": \"1646449178\",\n        \"jobNumber\": \"93431-1a\",\n        \"jobName\": \"SGI Brochure--REV Quantities\",\n        \"custName\": \"Cape Designs\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"SGI Project--Revised Quantities\",\n        \"projIndex\": \"Project_5ac7ad56.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Inventory\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"502330127063347\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"19691231190000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"19691231190000\",\n        \"proofFinal\": \"\",\n        \"deliveryDate\": \"19691231190000\",\n        \"deliveryFinal\": \"\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20220304215938\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180406132440\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5ac7ad58.PRJ5ac7ad5a\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"3300.0\",\n        \"ordNum\": \"OCMP005630834-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"26090312174911\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ace5314.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"93432\",\n        \"jobName\": \"DUKE Test 3\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"DUKE Test 3\",\n        \"projIndex\": \"Project_5ace531c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20180416000000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180423000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180411142524\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ace76b9.PRJ\",\n        \"lastMod\": \"1557218857\",\n        \"jobNumber\": \"00093433\",\n        \"jobName\": \"DUKE TEST 4\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"DUKE TEST 4\",\n        \"projIndex\": \"Project_5ace76be.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20180416000000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180430000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180411165729\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5acf7dbb.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"00093434\",\n        \"jobName\": \"DUK TEST 5\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"DUK TEST 5\",\n        \"projIndex\": \"Project_5acf7dc0.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20180416000000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180419000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180412113939\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ad3e5bd.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"00093435\",\n        \"jobName\": \"DUK TEST 5\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"DUK TEST 5\",\n        \"projIndex\": \"Project_5ad3e5c2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20180416000000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180419000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180415195229\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ad7b276.PRJ\",\n        \"lastMod\": \"1635986581\",\n        \"jobNumber\": \"100985-1-1\",\n        \"jobName\": \"QDirect Brochure\",\n        \"custName\": \"Marketing - Vince Tutino\",\n        \"custIndex\": \"5a2705b4\",\n        \"projName\": \"QDirect Brochure n\",\n        \"projIndex\": \"Project_5ad8ab9a.xml\",\n        \"itemIndex\": \"5ad0b9e1\",\n        \"creator\": \"caleb.tower@p3expeditor.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"Folders Full Color\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180426150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180430104659\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20180430104659\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180418170246\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5ad7b276.PRJ5ad8aea6\",\n        \"ordQuant\": \"800\",\n        \"ordPrice\": \"1079.0\",\n        \"ordNum\": \"100985-1-1\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20140312101639\",\n        \"orderSentDate\": \"20180419113713\",\n        \"extAcctSync\": \"5\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ad88b2b.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93437\",\n        \"jobName\": \"Blair's test 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Blair's test 1\",\n        \"projIndex\": \"Project_5ad88b30.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180426000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180419082723\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ad8de6a.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93438-1\",\n        \"jobName\": \"University Of Utah Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"University Of Utah Project\",\n        \"projIndex\": \"Project_5ad8de13.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180419153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180420142244\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180423142247\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180430142249\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180420142244\",\n        \"proofPlannedDate\": \"20180423142247\",\n        \"deliverPlannedDate\": \"20180430142249\",\n        \"orderDate\": \"20180419162515\",\n        \"compDate\": \"20180419164315\",\n        \"createdDate\": \"20180419142234\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5ad8de6a.PRJ5ad8df2c\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"65657583\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180419162515\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"17.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ad8df4c.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93438-2\",\n        \"jobName\": \"University Of Utah Envelope\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"University Of Utah Project\",\n        \"projIndex\": \"Project_5ad8de13.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180419153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180419142620\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ad8fd0e.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93439\",\n        \"jobName\": \"test BLAIR UTAH\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"test BLAIR UTAH\",\n        \"projIndex\": \"Project_5ad8fd13.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180419000000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180430000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180419163318\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ad9019f.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93440\",\n        \"jobName\": \"Paper Order: 4/19/18\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180419153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180419165247\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5ad9019f.PRJ5ad901a0\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"47.81\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ad9e639.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93441-1\",\n        \"jobName\": \"SGI Inc. Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"SGI Inc. Projecct\",\n        \"projIndex\": \"Project_5ad9e5e8.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180420153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180424090920\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180426090923\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180430090926\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180423090920\",\n        \"proofPlannedDate\": \"20180425090923\",\n        \"deliverPlannedDate\": \"20180430090926\",\n        \"orderDate\": \"20180420093351\",\n        \"compDate\": \"20180420093916\",\n        \"createdDate\": \"20180420090809\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5ad9e639.PRJ5ad9e80e\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"656683\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180420093351\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"171.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ad9ede2.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93442\",\n        \"jobName\": \"SGI Inc. Brochure--Rev\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180420153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180420094050\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180420093351\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ada36d0.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"100985-1-1\",\n        \"jobName\": \"QDirect Brochure\",\n        \"custName\": \"Marketing - Vince Tutino\",\n        \"custIndex\": \"5a2705b4\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"5ad0b9e1\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180423143003\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180430104659\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180420154149\",\n        \"compDate\": \"20180823120000\",\n        \"createdDate\": \"20180420145200\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5ada36d0.PRJ5ada36d5\",\n        \"ordQuant\": \"800\",\n        \"ordPrice\": \"1079.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20140312101639\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"146.75\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5ae1f8fc.PRJ\",\n        \"lastMod\": \"1634695881\",\n        \"jobNumber\": \"93445-1\",\n        \"jobName\": \"Dennis Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Dennis Brochure\",\n        \"projIndex\": \"Project_5ae1f895.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180427170000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180427100905\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180428100908\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180430100911\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180427100905\",\n        \"proofPlannedDate\": \"20180428100908\",\n        \"deliverPlannedDate\": \"20180430100911\",\n        \"orderDate\": \"20180426104714\",\n        \"compDate\": \"20180426110751\",\n        \"createdDate\": \"20180426120620\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5ae1f8fc.PRJ5ae1fb93\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1200.0\",\n        \"ordNum\": \"93445-1\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180426104714\",\n        \"orderSentDate\": \"20180426104830\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"300.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5af202c0.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93446\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180509150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180522120000\",\n        \"createdDate\": \"20180508160416\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5af45fbd.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93447\",\n        \"jobName\": \"Brochure - 16 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180511110558\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180510110548\",\n        \"compDate\": \"20180814120000\",\n        \"createdDate\": \"20180510110533\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5af45fbd.PRJ5af45fbd\",\n        \"ordQuant\": \"30\",\n        \"ordPrice\": \"144.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180510110548\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"14.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5af5c06a.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93448-1\",\n        \"jobName\": \"Yale Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Yale Demo Project\",\n        \"projIndex\": \"Project_5af5c047.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"7\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180511153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180511121018\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5afc8b3d.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93450-1\",\n        \"jobName\": \"Iowa Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Iowa Project\",\n        \"projIndex\": \"Project_5afc8aed.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180517153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180521155007\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180523155010\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180529155013\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180726133303\",\n        \"compDate\": \"20180516163506\",\n        \"createdDate\": \"20180516154917\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5afc8b3d.PRJ5afc8e0e\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"5454535\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180516162726\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"282.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5afc9661.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93451\",\n        \"jobName\": \"Iowa Brochure-REV 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180516153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180516163649\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180516162726\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5afc9e3d.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93453\",\n        \"jobName\": \"Paper Order: 5/16/18\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180516153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180516171021\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5afc9e3d.PRJ5afc9e3e\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"892.45\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5afed86b.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93455-1\",\n        \"jobName\": \"SGI 1 Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"SGI 1 Project\",\n        \"projIndex\": \"Project_5afed71d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180518153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180522094355\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180524094359\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180529094402\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180521094355\",\n        \"proofPlannedDate\": \"20180523094359\",\n        \"deliverPlannedDate\": \"20180529094402\",\n        \"orderDate\": \"20180518102633\",\n        \"compDate\": \"20180518103156\",\n        \"createdDate\": \"20180518094307\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5afed86b.PRJ5afedb71\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"6768485\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180518102633\",\n        \"orderSentDate\": \"20180518102738\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"173.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5afee425.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93456\",\n        \"jobName\": \" SGI 1 Brochure--REV 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180518153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180518103309\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180518102633\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5afee755.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93457\",\n        \"jobName\": \"Paper Order: 5/18/18\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180518153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180518104645\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5afee755.PRJ5afee755\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"161.70\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5afee76e.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93458\",\n        \"jobName\": \"Paper Order: 5/18/18\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180518153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180518104710\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5afee76e.PRJ5afee76f\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"274.90\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b044cb5.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93459-1\",\n        \"jobName\": \"WA Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"WA Brochure\",\n        \"projIndex\": \"Project_5b044c70.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180523100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180524130154\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180526000000\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180530130200\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180524130154\",\n        \"proofPlannedDate\": \"20180525130157\",\n        \"deliverPlannedDate\": \"20180530130200\",\n        \"orderDate\": \"20180522133053\",\n        \"compDate\": \"20180726135409\",\n        \"createdDate\": \"20180522130037\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b044cb5.PRJ5b04508d\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93459-1\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180522133053\",\n        \"orderSentDate\": \"20180522133233\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"1233.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b059220.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93461\",\n        \"jobName\": \"Tribune Brochure-1\",\n        \"custName\": \"Mega Corp\",\n        \"custIndex\": \"49f6f3d0\",\n        \"projName\": \"Tribune Project\",\n        \"projIndex\": \"Project_5b20013b.xml\",\n        \"itemIndex\": \"4a1421ac\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180524150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180614151430\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180620151434\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180626132900\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180614151430\",\n        \"proofPlannedDate\": \"20180620151434\",\n        \"deliverPlannedDate\": \"20180626132900\",\n        \"orderDate\": \"20180612153238\",\n        \"compDate\": \"20181212101152\",\n        \"createdDate\": \"20180523120904\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b059220.PRJ5b20036e\",\n        \"ordQuant\": \"20000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93461\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180612153238\",\n        \"orderSentDate\": \"20180612153357\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"900.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b059438.PRJ\",\n        \"lastMod\": \"1620867456\",\n        \"jobNumber\": \"93462-1\",\n        \"jobName\": \"Safeguard Test brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Safeguard Test \",\n        \"projIndex\": \"Project_5b0593d2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180524100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180524121922\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180525121925\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180529121929\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180523121800\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b059438.PRJ5b059726\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b0829db.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93463-1\",\n        \"jobName\": \"Go2 Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Go2 Partners Projecct\",\n        \"projIndex\": \"Project_5b082986.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180527153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180529112205\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180531112209\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180612112212\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180702162426\",\n        \"compDate\": \"20180525123123\",\n        \"createdDate\": \"20180525112059\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b0829db.PRJ5b082eff\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93463-1\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b083ac2.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93464\",\n        \"jobName\": \"Go2 Brochure-REV 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Go2 Brochure-REV 1\",\n        \"projIndex\": \"Project_5b3a8a68.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180525153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180724162759\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180718162802\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180525123306\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b083ac2.PRJ5b083ac4\",\n        \"ordQuant\": \"2301\",\n        \"ordPrice\": \"13980.0\",\n        \"ordNum\": \"93464\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b18094a.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93465-1\",\n        \"jobName\": \"Formax Flyer\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Formax Project\",\n        \"projIndex\": \"Project_5b1808f3.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180606000000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180613121856\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180620121858\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180627121901\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180606124633\",\n        \"compDate\": \"20180606125354\",\n        \"createdDate\": \"20180606121818\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b18094a.PRJ5b180b33\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2245.0\",\n        \"ordNum\": \"93465-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180606124633\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"104.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b18109c.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93465-2\",\n        \"jobName\": \"Formax Flyer--Rev. 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Formax Project\",\n        \"projIndex\": \"Project_5b1808f3.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180606153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180606124932\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180606124633\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b1811f9.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93466\",\n        \"jobName\": \"Formax Flyer--16 pg\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180606153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180606125521\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180606124633\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b2026c1.PRJ\",\n        \"lastMod\": \"1619385589\",\n        \"jobNumber\": \"93468\",\n        \"jobName\": \"QA TEST\",\n        \"custName\": \"Grid Enterprises - Max Kidder\",\n        \"custIndex\": \"4b3930d7\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Rob Yancich\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180613150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180612160209\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b226fc0.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93469-1\",\n        \"jobName\": \"Print Guy Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Print Guy Project\",\n        \"projIndex\": \"Project_5b226f6f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180615153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180618093900\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180621093903\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180622093906\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180618093900\",\n        \"proofPlannedDate\": \"20180620093903\",\n        \"deliverPlannedDate\": \"20180622093906\",\n        \"orderDate\": \"20180614095951\",\n        \"compDate\": \"20180614100412\",\n        \"createdDate\": \"20180614093808\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b226fc0.PRJ5b227137\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93469-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180614095951\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"167.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b22763a.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93470\",\n        \"jobName\": \" Print Guy Brochure--REV 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180614153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180614100546\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180614095951\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b2d3460.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93472\",\n        \"jobName\": \"QA Test 622\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"QA Test 622\",\n        \"projIndex\": \"Project_5b2d3462.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180627000000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20180628000000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180630000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180622133944\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b3511ed.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93473\",\n        \"jobName\": \"Brochure - 16 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180814120000\",\n        \"createdDate\": \"20180628125053\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b3511ed.PRJ5b3511ee\",\n        \"ordQuant\": \"20\",\n        \"ordPrice\": \"139.00\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-10.0\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b3b888b.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93322-2\",\n        \"jobName\": \"DAI test job\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"DAI Project\",\n        \"projIndex\": \"Project_5a0daa34.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180703153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180703103035\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b3b89bf.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93474-1\",\n        \"jobName\": \"Axis IQ Test 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Axis IQ Test\",\n        \"projIndex\": \"Project_5b3b89a2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180703153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180703104723\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180703103543\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b3b89bf.PRJ5b3b89e0\",\n        \"ordQuant\": \"101\",\n        \"ordPrice\": \"253.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180703104723\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b3b8a12.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93474-2\",\n        \"jobName\": \"Axis IQ Test 2\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Axis IQ Test\",\n        \"projIndex\": \"Project_5b3b89a2.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180703153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180703103706\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b3b8a12.PRJ5b3b8a2a\",\n        \"ordQuant\": \"1\",\n        \"ordPrice\": \"23.0\",\n        \"ordNum\": \"93474-1\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b3e3742.PRJ\",\n        \"lastMod\": \"1683328770\",\n        \"jobNumber\": \"93476\",\n        \"jobName\": \"Heart Project Envelope v2\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Bob Yancich\",\n        \"jobCategory1\": \"T90 Miscellaneous Charges\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"101\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180706150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20190312144257\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20190312144257\",\n        \"orderDate\": \"20201119123837\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180705112034\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"* Order Accepted\",\n        \"winningBidIndex\": \"5b3e3742.PRJ5b3e506f\",\n        \"ordQuant\": \"4000\",\n        \"ordPrice\": \"60.0\",\n        \"ordNum\": \"93476\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180215154415\",\n        \"orderSentDate\": \"20230421101528\",\n        \"extAcctSync\": \"5\",\n        \"finalPrice\": \"60.00\",\n        \"savingsAmt\": \"-20.00\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b3e390d.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93477-1\",\n        \"jobName\": \"Iowa Project Brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Iowa Project\",\n        \"projIndex\": \"Project_5b3e38b6.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180706100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180706113145\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180710113147\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180713113150\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180706113145\",\n        \"proofPlannedDate\": \"20180710113147\",\n        \"deliverPlannedDate\": \"20180713113150\",\n        \"orderDate\": \"20180705125202\",\n        \"compDate\": \"20180705125557\",\n        \"createdDate\": \"20180705112813\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b3e390d.PRJ5b3e3ecf\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2000.0\",\n        \"ordNum\": \"93477-1\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20180705124507\",\n        \"orderSentDate\": \"20180705125357\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-66.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b43c52d.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93478-1\",\n        \"jobName\": \"AxisIQ Multi-item spec 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"AxisIQ Multi-item spec\",\n        \"projIndex\": \"Project_5b43c4d5.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180709153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180712163937\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180717163942\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180725163849\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180711163853\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180709162725\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b43c52d.PRJ5b43c563\",\n        \"ordQuant\": \"4001\",\n        \"ordPrice\": \"3994.0\",\n        \"ordNum\": \"93478-1\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b43ca4f.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93479-1\",\n        \"jobName\": \"AxisIQ multiple quantites layout\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"AxisIQ multiple quantites layout\",\n        \"projIndex\": \"Project_5b43ca1d.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180709153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180710184944\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180718184947\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180709164919\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b43ca4f.PRJ5b43ca79\",\n        \"ordQuant\": \"8002\",\n        \"ordPrice\": \"2354.0\",\n        \"ordNum\": \"93479-1\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b43cc86.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93480-1\",\n        \"jobName\": \"AxisIQ job without bid\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"AxisIQ job without bid\",\n        \"projIndex\": \"Project_5b43cc5c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180709153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180711183446\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180719183449\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180719183450\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180709165846\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b44f68f.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93481-1\",\n        \"jobName\": \"Focus Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Focus Project\",\n        \"projIndex\": \"Project_5b44f662.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180711153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180711141106\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180720000000\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180725141111\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180711141106\",\n        \"proofPlannedDate\": \"20180718141109\",\n        \"deliverPlannedDate\": \"20180725141111\",\n        \"orderDate\": \"20180710144002\",\n        \"compDate\": \"20180710145245\",\n        \"createdDate\": \"20180710141023\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b44f68f.PRJ5b44f828\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93481-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180710144002\",\n        \"orderSentDate\": \"20180710144114\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"266.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b4500d8.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93482\",\n        \"jobName\": \"Focus Brochure--REV--New Paper\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180710153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180710145416\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b4500d8.PRJ5b4500da\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180710144002\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b45379a.PRJ\",\n        \"lastMod\": \"1589846644\",\n        \"jobNumber\": \"93484\",\n        \"jobName\": \"Brochure w/PMS - 24 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180710184754\",\n        \"numBidders\": \"5\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b45379a.PRJ5b45379b\",\n        \"ordQuant\": \"4001\",\n        \"ordPrice\": \"750.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"504.187\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b45399e.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93486\",\n        \"jobName\": \"[Copy ] Print Guy Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180710153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180710185630\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180614095951\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b47b4f2.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93487\",\n        \"jobName\": \"[Copy ] Safeguard Test brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180713150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180719160740\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180814120000\",\n        \"createdDate\": \"20180712160714\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b47b809.PRJ\",\n        \"lastMod\": \"1617757311\",\n        \"jobNumber\": \"93489\",\n        \"jobName\": \"Safeguard Brochure v3\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"Safeguard Test brochurev3\",\n        \"projIndex\": \"Project_5b7c32d3.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180713150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180717142731\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180718142755\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180723142821\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20201119123906\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180712162025\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b47b809.PRJ5b47b80b\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20201119123906\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"5\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b47b920.PRJ\",\n        \"lastMod\": \"1634695311\",\n        \"jobNumber\": \"93490\",\n        \"jobName\": \"[Copy ] Safeguard Test brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"[Safeguard Test Project\",\n        \"projIndex\": \"Project_5b47c686.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180713150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180814120000\",\n        \"createdDate\": \"20180712162504\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b47b920.PRJ5b47b922\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"0.0\",\n        \"ordNum\": \"93490\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b47ba27.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93491\",\n        \"jobName\": \"[Copy 1] Safeguard Test brochure\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180712162928\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180823142538\",\n        \"createdDate\": \"20180712162927\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b47ba53.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93492\",\n        \"jobName\": \"[Copy ] Safeguard Test brochurev3\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Ellie Whitney\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180712163012\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180814152853\",\n        \"createdDate\": \"20180712163011\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b47c1b1.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93493\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180713150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180814152609\",\n        \"createdDate\": \"20180712170137\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b47c338.PRJ\",\n        \"lastMod\": \"1557218858\",\n        \"jobNumber\": \"93494\",\n        \"jobName\": \"\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180713150000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180712170808\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b47c4d9.PRJ\",\n        \"lastMod\": \"1635986593\",\n        \"jobNumber\": \"93495-1\",\n        \"jobName\": \"Seenkkea Brochure\",\n        \"custName\": \"Boston Scientific - Jill Cahill\",\n        \"custIndex\": \"5c55ba14\",\n        \"projName\": \"Seenkkea\",\n        \"projIndex\": \"Project_5b47c4bc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"caleb.tower@p3expeditor.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"5\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180713150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180726212438\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180731171513\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20210115171407\",\n        \"compDate\": \"20210423165115\",\n        \"createdDate\": \"20180712171505\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b47c4d9.PRJ5b610ca4\",\n        \"ordQuant\": \"3000\",\n        \"ordPrice\": \"2800.0\",\n        \"ordNum\": \"93495-1\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20210115171407\",\n        \"orderSentDate\": \"20201027150144\",\n        \"extAcctSync\": \"5\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b47c503.PRJ\",\n        \"lastMod\": \"1635986596\",\n        \"jobNumber\": \"93495-2\",\n        \"jobName\": \"Seenkkea Cover Letter\",\n        \"custName\": \"Boston Scientific - Jill Cahill\",\n        \"custIndex\": \"5c55ba14\",\n        \"projName\": \"Seenkkea\",\n        \"projIndex\": \"Project_5b47c4bc.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"caleb.tower@p3expeditor.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"6\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180713150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180712171547\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b47c503.PRJ5c5890ce\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b4df263.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93498\",\n        \"jobName\": \"Blair Test\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Blair Test\",\n        \"projIndex\": \"Project_5b4df265.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180717000000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20180725000000\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180727000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180717094259\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b4df39b.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"00093499\",\n        \"jobName\": \"Blair's test 7/17\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Blair's test 7/17\",\n        \"projIndex\": \"Project_5b4df39c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@p3software.com\",\n        \"salesRep\": \"Jennifer Cahill\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180718000000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180719000000\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180717094811\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b4e0f42.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93500-1\",\n        \"jobName\": \"Kendal King POP\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Kendal King Project\",\n        \"projIndex\": \"Project_5b4e0eed.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180718153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180719114655\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180725114658\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180727114701\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180719114655\",\n        \"proofPlannedDate\": \"20180723114658\",\n        \"deliverPlannedDate\": \"20180727114701\",\n        \"orderDate\": \"20180717121522\",\n        \"compDate\": \"20180717122341\",\n        \"createdDate\": \"20180717114610\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b4e0f42.PRJ5b4e108a\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93500-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180717121522\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"340.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b4e18c3.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93501\",\n        \"jobName\": \"Kendal King POP--Rev 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180717153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180717122643\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180717121522\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b4e1bd9.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93502\",\n        \"jobName\": \"Paper Order: 7/17/18\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180717153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180717123953\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b4e1bd9.PRJ5b4e1bda\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"161.70\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b4e1bf1.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93503\",\n        \"jobName\": \"Paper Order: 7/17/18\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180717153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180717124017\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b4e1bf1.PRJ5b4e1bf2\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"323.41\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b51f518.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93504-1\",\n        \"jobName\": \"IDC Project Mailing Fulfillment\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"IDC Project Mailing\",\n        \"projIndex\": \"Project_5b51f457.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180723153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180723104432\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180725104435\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180731104437\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180720112346\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180720104336\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b51f518.PRJ5b51f7a3\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"800.0\",\n        \"ordNum\": \"93504-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180720112346\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"66.6667\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b51f82a.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93504-2\",\n        \"jobName\": \"IDC Project Mailing Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"IDC Project Mailing\",\n        \"projIndex\": \"Project_5b51f457.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180723153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180723112705\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180724112719\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180726112605\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180721112654\",\n        \"proofPlannedDate\": \"20180724112658\",\n        \"deliverPlannedDate\": \"20180726112605\",\n        \"orderDate\": \"20180720112631\",\n        \"compDate\": \"20180720114036\",\n        \"createdDate\": \"20180720105642\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b51f82a.PRJ5b51f853\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"6753.0\",\n        \"ordNum\": \"93504-2\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180720112631\",\n        \"orderSentDate\": \"20180720112639\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"405.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b51fc86.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93505\",\n        \"jobName\": \"Formax Flyer--REV 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180723153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180720111518\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180606124633\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b5225b5.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93506-1\",\n        \"jobName\": \"Packlane 2 Box\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Packlane 2 Project\",\n        \"projIndex\": \"Project_5b5224ee.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180723153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180721141202\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180724141204\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180731141207\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20180721141202\",\n        \"proofPlannedDate\": \"20180724141204\",\n        \"deliverPlannedDate\": \"20180731141207\",\n        \"orderDate\": \"20180720145502\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180720141101\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"2\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b5225b5.PRJ5b522840\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"3423.0\",\n        \"ordNum\": \"93506-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180720145502\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"-561.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b522c64.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93507\",\n        \"jobName\": \"Packlane 2 Box--additional quantities\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180723153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"20180721141202\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180724141204\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180731141207\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180720143932\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b574f53.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93508-1\",\n        \"jobName\": \"ACS Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"ACS Projecct\",\n        \"projIndex\": \"Project_5b574f2f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"4\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180726153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180726121103\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"20180729121106\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180731121108\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"20180725121103\",\n        \"proofPlannedDate\": \"20180727121106\",\n        \"deliverPlannedDate\": \"20180731121108\",\n        \"orderDate\": \"20180724124530\",\n        \"compDate\": \"20180724125120\",\n        \"createdDate\": \"20180724120955\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b574f53.PRJ5b575115\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2200.0\",\n        \"ordNum\": \"93508-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180724124530\",\n        \"orderSentDate\": \"20180724124638\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"376.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b5751ae.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93508-2\",\n        \"jobName\": \"ACS Brochure TEST\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"ACS Projecct\",\n        \"projIndex\": \"Project_5b574f2f.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180725153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180724121958\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b575987.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93509\",\n        \"jobName\": \"ACS Brochure--REV 1\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180725153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180724125327\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180724124530\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b57b645.PRJ\",\n        \"lastMod\": \"1634695913\",\n        \"jobNumber\": \"93510-1\",\n        \"jobName\": \"Brochure Project\",\n        \"custName\": \"Ford Motor Company - Blair Weidig\",\n        \"custIndex\": \"5cc36865\",\n        \"projName\": \"Brochure Project\",\n        \"projIndex\": \"Project_5b57b626.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180725150000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20210422174036\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180724192909\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b57b8ab.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93511\",\n        \"jobName\": \"Brochure - 20 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180814120000\",\n        \"createdDate\": \"20180724193923\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b57b8ab.PRJ5b57b8ac\",\n        \"ordQuant\": \"30\",\n        \"ordPrice\": \"100.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b5a00b0.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93414-2\",\n        \"jobName\": \"AWI test\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"AWI Project\",\n        \"projIndex\": \"Project_5ab40e62.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180727153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180726131112\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b5a0b6b.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93515\",\n        \"jobName\": \"WA Brochure--REV 1\",\n        \"custName\": \"Pacific Insurance Co. - Herbert Mann\",\n        \"custIndex\": \"51a80ec1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"1\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180727153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"1\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180726135659\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"20180522133053\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b5b6c14.PRJ\",\n        \"lastMod\": \"1635986570\",\n        \"jobNumber\": \"93516-1\",\n        \"jobName\": \"QDirect Brochure\",\n        \"custName\": \"Ford Motor Company - Blair Weidig\",\n        \"custIndex\": \"5cc36865\",\n        \"projName\": \"QDirect Brochure\",\n        \"projIndex\": \"Project_5b5b6a3c.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"caleb.tower@p3expeditor.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180718100000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180723150221\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"20180723150221\",\n        \"orderDate\": \"20201123104457\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180727150140\",\n        \"numBidders\": \"4\",\n        \"numBids\": \"4\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b5b6c14.PRJ5b5b6f3c\",\n        \"ordQuant\": \"200000\",\n        \"ordPrice\": \"3120.0\",\n        \"ordNum\": \"93516-1\",\n        \"orderAuth\": \"byancich@gmail.com\",\n        \"orderAuthDate\": \"20201123104436\",\n        \"orderSentDate\": \"20201123104553\",\n        \"extAcctSync\": \"5\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"25732.5\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b6113b5.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93518\",\n        \"jobName\": \"Brochure - 16 pg\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"byancich@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"0\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"20180814120000\",\n        \"createdDate\": \"20180731215813\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b6113b5.PRJ5b6113b6\",\n        \"ordQuant\": \"50\",\n        \"ordPrice\": \"210.0\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"7.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b61deab.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93519\",\n        \"jobName\": \"SGI Item Test \",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"5b61ec0c\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180802153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180802122549\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180808122553\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180815122555\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180801132223\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180801122411\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"1\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b61deab.PRJ5b61ded5\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"2159.0\",\n        \"ordNum\": \"93519\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180801132223\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b634377.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93520-1\",\n        \"jobName\": \"Klopache Brochure\",\n        \"custName\": \"Cape Designs - Blair Weidig\",\n        \"custIndex\": \"4f2c0cf8\",\n        \"projName\": \"Klopache Project\",\n        \"projIndex\": \"Project_5b634350.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"3\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180803153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"20180803135010\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"20180814135013\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"20180823135016\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"20180803135010\",\n        \"proofPlannedDate\": \"20180814135013\",\n        \"deliverPlannedDate\": \"20180823135016\",\n        \"orderDate\": \"20180802163014\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180802134631\",\n        \"numBidders\": \"3\",\n        \"numBids\": \"3\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b634377.PRJ5b6343dd\",\n        \"ordQuant\": \"1000\",\n        \"ordPrice\": \"1124.0\",\n        \"ordNum\": \"93520-1\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180802163014\",\n        \"orderSentDate\": \"20181003154215\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"176.3333\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b6c6840.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93521\",\n        \"jobName\": \"Paper Order: 8/9/18\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180810153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180809121352\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b6c6840.PRJ5b6c6841\",\n        \"ordQuant\": \"2000\",\n        \"ordPrice\": \"705.78\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b6c6ca5.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93522\",\n        \"jobName\": \"Paper Order: 8/9/18\",\n        \"custName\": \"\",\n        \"custIndex\": \"-1\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"2\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180810153000\",\n        \"bidsOpenClosed\": \"1\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"1\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"1\",\n        \"deliveryDate\": \"20180809123305\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"20180809123313\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180809123237\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"5b6c6ca5.PRJ5b6c6ca6\",\n        \"ordQuant\": \"10000\",\n        \"ordPrice\": \"2993.28\",\n        \"ordNum\": \"34334\",\n        \"orderAuth\": \"blairweidig@gmail.com\",\n        \"orderAuthDate\": \"20180809123313\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b6c71d1.PRJ\",\n        \"lastMod\": \"1571689805\",\n        \"jobNumber\": \"93523\",\n        \"jobName\": \" Meredith Brochure\",\n        \"custName\": \"Admissions - Maria Josten\",\n        \"custIndex\": \"4a76d7f3\",\n        \"projName\": \"\",\n        \"projIndex\": \"\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"\",\n        \"jobCategory1\": \"Reprint With Changes Job:\",\n        \"jobCategory2\": \"Non-Inventory\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180810153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180809125441\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b6c72a1.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93524-1\",\n        \"jobName\": \"Phoenix Brochure\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Phoenix Project\",\n        \"projIndex\": \"Project_5b6c7264.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"New Job\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180810153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180809125809\",\n        \"numBidders\": \"1\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    },\n    {\n        \"jobIndex\": \"5b6c72e3.PRJ\",\n        \"lastMod\": \"1557218859\",\n        \"jobNumber\": \"93524-2\",\n        \"jobName\": \"Phoenix Envelopes\",\n        \"custName\": \"DB Delivers - Blair Weidig\",\n        \"custIndex\": \"529b5754\",\n        \"projName\": \"Phoenix Project\",\n        \"projIndex\": \"Project_5b6c7264.xml\",\n        \"itemIndex\": \"\",\n        \"creator\": \"blairweidig@gmail.com\",\n        \"salesRep\": \"Blair Weidig\",\n        \"jobCategory1\": \"\",\n        \"jobCategory2\": \"\",\n        \"status\": \"0\",\n        \"active\": \"1\",\n        \"curSymbol\": \"$\",\n        \"metric\": \"0\",\n        \"bidsDueDate\": \"20180810153000\",\n        \"bidsOpenClosed\": \"0\",\n        \"artDueDate\": \"\",\n        \"artFinal\": \"0\",\n        \"proofDueDate\": \"\",\n        \"proofFinal\": \"0\",\n        \"deliveryDate\": \"\",\n        \"deliveryFinal\": \"0\",\n        \"artPlannedDate\": \"\",\n        \"proofPlannedDate\": \"\",\n        \"deliverPlannedDate\": \"\",\n        \"orderDate\": \"\",\n        \"compDate\": \"\",\n        \"createdDate\": \"20180809125915\",\n        \"numBidders\": \"0\",\n        \"numBids\": \"0\",\n        \"NEWBIDS\": \"\",\n        \"winningBidIndex\": \"\",\n        \"ordQuant\": \"\",\n        \"ordPrice\": \"\",\n        \"ordNum\": \"\",\n        \"orderAuth\": \"\",\n        \"orderAuthDate\": \"\",\n        \"orderSentDate\": \"\",\n        \"extAcctSync\": \"\",\n        \"finalPrice\": \"\",\n        \"savingsAmt\": \"\",\n        \"saveType\": \"\",\n        \"saveNote\": \"\"\n    }\n]"}],"_postman_id":"089a3340-271a-fb2a-ae11-21b0071b5b21"},{"name":"Get Job","id":"5286a963-be89-95b4-a0ef-2d8d93ebbdae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"url":"https://p3expeditor.com/api/v3/job/69ceb3e8.PRJ","description":"<p>Get a job from a record id.  The id is in the form 5xxxxxxx.PRJ<br />\nThe examples include 2 types of Price Matrix Specification Style:<br /></p>\n<ul>\n<li>Flexi-Spec, which is most commonly used. These Jobs contain a single set of Quantities, Versions and Response Fields.</li>\n<li>Multi-Item-Spec, which is less commonly used. These Jobs contain several Items each with its own Quantity and Response Field lists.</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","job","69ceb3e8.PRJ"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[{"id":"0ea64cf0-f0e2-4454-8c05-459d0baf6928","name":"Get Job: Flexi-Spec","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"url":"https://p3expeditor.com/api/v3/job/5ca293aa.PRJ"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 May 2019 23:28:34 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"300"},{"key":"X-RateLimit-Remaining","value":"297"},{"key":"Set-Cookie","value":"laravel_session=ki4oz5jv74aNJVTLNqIzgQRyUrGffgwnnRyohq3a; expires=Fri, 31-May-2019 01:28:34 GMT; Max-Age=7200; path=/; httponly"}],"cookie":[],"responseTime":null,"body":"{\n    \"jobIndex\": \"5ca293aa.PRJ\",\n    \"lastMod\": 0,\n    \"jobNumber\": \"000000001\",\n    \"jobName\": \"Job Name 5\",\n    \"custName\": \"\",\n    \"custIndex\": \"-1\",\n    \"projName\": \"\",\n    \"projIndex\": \"\",\n    \"itemIndex\": \"\",\n    \"creator\": \"qb@p3software.com\",\n    \"salesRep\": \"\",\n    \"jobCategory1\": \"Job Category\",\n    \"jobCategory2\": \"Job Category\",\n    \"status\": 1,\n    \"active\": 1,\n    \"curSymbol\": \"$\",\n    \"metric\": 0,\n    \"bidsDueDate\": \"20180125150000\",\n    \"bidsOpenClosed\": 0,\n    \"artDueDate\": \"20180130150000\",\n    \"artFinal\": 0,\n    \"proofDueDate\": \"20180215150000\",\n    \"proofFinal\": \"0\",\n    \"deliveryDate\": \"20180220150000\",\n    \"deliveryFinal\": \"0\",\n    \"artPlannedDate\": \"\",\n    \"proofPlannedDate\": \"\",\n    \"deliverPlannedDate\": \"\",\n    \"orderDate\": \"\",\n    \"compDate\": \"\",\n    \"createdDate\": \"\",\n    \"numBidders\": \"2\",\n    \"numBids\": \"2\",\n    \"NEWBIDS\": \"\",\n    \"winningBidIndex\": \"\",\n    \"ordQuant\": \"0\",\n    \"ordPrice\": \"450\",\n    \"ordNum\": \"1245689\",\n    \"orderAuth\": \"\",\n    \"orderAuthDate\": \"\",\n    \"orderSentDate\": \"\",\n    \"extAcctSync\": \"\",\n    \"finalPrice\": \"\",\n    \"savingsAmt\": \"0\",\n    \"saveType\": \"\",\n    \"saveNote\": \"\",\n    \"currency\": \"US dollars\",\n    \"isoCurrency\": \"USD\",\n    \"versions\": {\n        \"version\": [\n            \"Version 1\",\n            \"Version 2\",\n            \"Version 1\",\n            \"Version 2\",\n            \"Version 1\",\n            \"Version 2\",\n            \"Version 1\",\n            \"Version 2\"\n        ]\n    },\n    \"quantities\": {\n        \"quantity\": [\n            \"1,000\",\n            \"2,000\",\n            \"1,000\",\n            \"2,000\",\n            \"1,000\",\n            \"2,000\",\n            \"1,000\",\n            \"2,000\"\n        ]\n    },\n    \"responseFields\": {\n        \"responseField\": [\n            {\n                \"numeric\": \"Y\",\n                \"showCurSym\": \"Y\",\n                \"decimalsMin\": \"2\",\n                \"decimalsMax\": \"2\",\n                \"label\": \"Total\",\n                \"type\": \"Cost\"\n            }\n        ]\n    },\n    \"purchaseOrder\": [],\n    \"bids\": {\n        \"bid\": [\n            {\n                \"index\": \"5cedfd43\",\n                \"awarded\": \"\",\n                \"supIndex\": \"4b6216ff\",\n                \"email\": \"sup2@p3software.com\",\n                \"contact\": \"George Jetson\",\n                \"title\": \"Grand Poo-Bah\",\n                \"address1\": \"123 high street\",\n                \"address2\": \"\",\n                \"city\": \"Newton\",\n                \"state\": \"NA\",\n                \"zip\": \"02459\",\n                \"country\": \"\",\n                \"versions\": {\n                    \"version\": [\n                        \"Version 1\",\n                        \"Version 2\",\n                        \"Version 1\",\n                        \"Version 2\",\n                        \"Version 1\",\n                        \"Version 2\",\n                        \"Version 1\",\n                        \"Version 2\"\n                    ]\n                },\n                \"quantities\": {\n                    \"quantity\": [\n                        \"1,000\",\n                        \"2,000\",\n                        \"1,000\",\n                        \"2,000\",\n                        \"1,000\",\n                        \"2,000\",\n                        \"1,000\",\n                        \"2,000\"\n                    ]\n                },\n                \"responseFields\": {\n                    \"responseField\": [\n                        {\n                            \"numeric\": \"Y\",\n                            \"showCurSym\": \"Y\",\n                            \"decimalsMin\": \"2\",\n                            \"decimalsMax\": \"2\",\n                            \"label\": \"Total\",\n                            \"type\": \"Cost\"\n                        }\n                    ]\n                },\n                \"requestEstNum\": \"Y\",\n                \"responseTurnTime\": \"\",\n                \"responseComment\": \"\",\n                \"responseNoBid\": \"\",\n                \"values\": {\n                    \"v0q0f0\": \"700\",\n                    \"v0q1f0\": \"800\",\n                    \"v0q2f0\": \"900\",\n                    \"v0q3f0\": \"1000\",\n                    \"v0q4f0\": \"1100\",\n                    \"v0q5f0\": \"1200\",\n                    \"v0q6f0\": \"1300\",\n                    \"v0q7f0\": \"1400\"\n                }\n            },\n            {\n                \"index\": \"5cedfd44\",\n                \"awarded\": \"\",\n                \"supIndex\": \"4a6c9f56\",\n                \"email\": \"by@verizon.net\",\n                \"contact\": \"Michael Bay\",\n                \"title\": \"\",\n                \"address1\": \"Mission Blvd\",\n                \"address2\": \"\",\n                \"city\": \"San Diego\",\n                \"state\": \"CA\",\n                \"zip\": \"45333\",\n                \"country\": \"\",\n                \"versions\": {\n                    \"version\": [\n                        \"Version 1\",\n                        \"Version 2\",\n                        \"Version 1\",\n                        \"Version 2\",\n                        \"Version 1\",\n                        \"Version 2\",\n                        \"Version 1\",\n                        \"Version 2\"\n                    ]\n                },\n                \"quantities\": {\n                    \"quantity\": [\n                        \"1,000\",\n                        \"2,000\",\n                        \"1,000\",\n                        \"2,000\",\n                        \"1,000\",\n                        \"2,000\",\n                        \"1,000\",\n                        \"2,000\"\n                    ]\n                },\n                \"responseFields\": {\n                    \"responseField\": [\n                        {\n                            \"numeric\": \"Y\",\n                            \"showCurSym\": \"Y\",\n                            \"decimalsMin\": \"2\",\n                            \"decimalsMax\": \"2\",\n                            \"label\": \"Total\",\n                            \"type\": \"Cost\"\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"specifications\": \"Adding a specification for this job.\"\n}"},{"id":"ad0a2bde-4366-4755-a334-f2ce59f3d767","name":"Get Job: Multi-Item-Spec","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"url":"https://p3expeditor.com/api/v3/job/5a29e673.PRJ"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 May 2019 23:34:45 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"300"},{"key":"X-RateLimit-Remaining","value":"298"},{"key":"Set-Cookie","value":"laravel_session=ki4oz5jv74aNJVTLNqIzgQRyUrGffgwnnRyohq3a; expires=Fri, 31-May-2019 01:34:45 GMT; Max-Age=7200; path=/; httponly"}],"cookie":[],"responseTime":null,"body":"{\n    \"jobIndex\": \"5a29e673.PRJ\",\n    \"lastMod\": 0,\n    \"jobNumber\": \"Jobnum702\",\n    \"jobName\": \"QA: Cogs & Sprockets\",\n    \"custName\": \"test\",\n    \"custIndex\": \"5a29e673\",\n    \"projName\": \"QA: Duplicate specs 3\",\n    \"projIndex\": \"Project_5a29e674.xml\",\n    \"itemIndex\": \"\",\n    \"creator\": \"qb@p3software.com\",\n    \"salesRep\": \"\",\n    \"jobCategory1\": \"\",\n    \"jobCategory2\": \"\",\n    \"status\": 2,\n    \"active\": 1,\n    \"curSymbol\": \"$\",\n    \"metric\": 0,\n    \"bidsDueDate\": \"20181218190000\",\n    \"bidsOpenClosed\": 1,\n    \"artDueDate\": \"19691231190000\",\n    \"artFinal\": 0,\n    \"proofDueDate\": \"19691231190000\",\n    \"proofFinal\": \"0\",\n    \"deliveryDate\": \"20171230000000\",\n    \"deliveryFinal\": \"0\",\n    \"artPlannedDate\": \"\",\n    \"proofPlannedDate\": \"\",\n    \"deliverPlannedDate\": \"\",\n    \"orderDate\": \"20190529144852\",\n    \"compDate\": \"\",\n    \"createdDate\": \"\",\n    \"numBidders\": \"1\",\n    \"numBids\": \"1\",\n    \"NEWBIDS\": \"\",\n    \"winningBidIndex\": \"5a29e673.PRJ5bd88e8b\",\n    \"ordQuant\": \"3000\",\n    \"ordPrice\": \"3670.0\",\n    \"ordNum\": \"Jobnum702\",\n    \"orderAuth\": \"qb@p3software.com\",\n    \"orderAuthDate\": \"6417820525170052\",\n    \"orderSentDate\": \"\",\n    \"extAcctSync\": \"\",\n    \"finalPrice\": \"\",\n    \"savingsAmt\": \"0\",\n    \"saveType\": \"\",\n    \"saveNote\": \"\",\n    \"currency\": \"US dollars\",\n    \"isoCurrency\": \"USD\",\n    \"items\": {\n        \"item\": [\n            {\n                \"itemName\": \"Test Item A: Sprockets\",\n                \"itemDescription\": \"Wheels with little teeth on them\\t\",\n                \"quantities\": {\n                    \"quantity\": [\n                        \"1,500\",\n                        \"2,200\"\n                    ]\n                },\n                \"responseFields\": {\n                    \"responseField\": [\n                        {\n                            \"numeric\": \"Y\",\n                            \"showCurSym\": \"Y\",\n                            \"decimalsMin\": \"2\",\n                            \"decimalsMax\": \"2\",\n                            \"label\": \"Total\",\n                            \"type\": \"Cost\"\n                        },\n                        {\n                            \"numeric\": \"Y\",\n                            \"showCurSym\": \"Y\",\n                            \"decimalsMin\": \"2\",\n                            \"decimalsMax\": \"2\",\n                            \"label\": \"Freight\",\n                            \"type\": \"Cost\"\n                        }\n                    ]\n                }\n            },\n            {\n                \"itemName\": \"Test Item B: Cogs\",\n                \"itemDescription\": \"Little wheeks with teeth on them.\",\n                \"quantities\": {\n                    \"quantity\": [\n                        \"800\"\n                    ]\n                },\n                \"responseFields\": {\n                    \"responseField\": [\n                        {\n                            \"numeric\": \"Y\",\n                            \"showCurSym\": \"Y\",\n                            \"decimalsMin\": \"2\",\n                            \"decimalsMax\": \"2\",\n                            \"label\": \"Total\",\n                            \"type\": \"Cost\"\n                        }\n                    ]\n                }\n            }\n        ]\n    },\n    \"purchaseOrder\": [\n        {\n            \"quantity\": \"800\",\n            \"description\": \"Item 2: Test Item B: Cogs\\nLittle wheeks with teeth on them.\\nQuantity: 800\\nTotal (Cost $): 695.00\",\n            \"price\": \"695.00\",\n            \"taxable\": false,\n            \"acctCode\": false\n        },\n        {\n            \"quantity\": \"2200\",\n            \"description\": \"Item 1: Test Item A: Sprockets\\nWheels with little teeth on them\\t\\nQuantity: 2,200\\nTotal (Cost $): 2,975.00\",\n            \"price\": \"2,975.00\",\n            \"taxable\": false,\n            \"acctCode\": false\n        }\n    ],\n    \"bids\": {\n        \"bid\": [\n            {\n                \"index\": \"5bd88e8b\",\n                \"awarded\": \"1\",\n                \"supIndex\": \"590620e3\",\n                \"email\": \"sup2@gmail.com\",\n                \"contact\": \"Brad Flint\",\n                \"title\": \"\",\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"city\": \"\",\n                \"state\": \"\",\n                \"zip\": \"\",\n                \"country\": \"\",\n                \"items\": {\n                    \"item\": [\n                        {\n                            \"itemName\": \"Test Item A: Sprockets\",\n                            \"itemDescription\": \"Wheels with little teeth on them\\t\",\n                            \"quantities\": {\n                                \"quantity\": [\n                                    \"1,500\",\n                                    \"2,200\"\n                                ]\n                            },\n                            \"responseFields\": {\n                                \"responseField\": [\n                                    {\n                                        \"numeric\": \"Y\",\n                                        \"showCurSym\": \"Y\",\n                                        \"decimalsMin\": \"2\",\n                                        \"decimalsMax\": \"2\",\n                                        \"label\": \"Total\",\n                                        \"type\": \"Cost\"\n                                    },\n                                    {\n                                        \"numeric\": \"Y\",\n                                        \"showCurSym\": \"Y\",\n                                        \"decimalsMin\": \"2\",\n                                        \"decimalsMax\": \"2\",\n                                        \"label\": \"Freight\",\n                                        \"type\": \"Cost\"\n                                    }\n                                ]\n                            }\n                        },\n                        {\n                            \"itemName\": \"Test Item B: Cogs\",\n                            \"itemDescription\": \"Little wheeks with teeth on them.\",\n                            \"quantities\": {\n                                \"quantity\": [\n                                    \"800\"\n                                ]\n                            },\n                            \"responseFields\": {\n                                \"responseField\": [\n                                    {\n                                        \"numeric\": \"Y\",\n                                        \"showCurSym\": \"Y\",\n                                        \"decimalsMin\": \"2\",\n                                        \"decimalsMax\": \"2\",\n                                        \"label\": \"Total\",\n                                        \"type\": \"Cost\"\n                                    }\n                                ]\n                            }\n                        }\n                    ]\n                },\n                \"requestEstNum\": \"Y\",\n                \"responseTurnTime\": \"\",\n                \"responseComment\": \"\",\n                \"responseNoBid\": \"\",\n                \"values\": {\n                    \"v0q0f0\": \"2350\",\n                    \"v0q1f0\": \"2975\",\n                    \"v0q0f1\": \"38\",\n                    \"v0q1f1\": \"42\",\n                    \"v1q0f0\": \"695\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"5286a963-be89-95b4-a0ef-2d8d93ebbdae"},{"name":"Create Job","id":"3a316dd0-6bdd-ab08-18ba-6ffc9ea7510c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jobNumber\": \"000000001\",\n    \"jobName\": \"Job Name 5\",\n    \"creator\": \"qb@p3software.com\",\n    \"jobCategory1\": \"Job Category\",\n    \"jobCategory2\": \"Job Category\",\n    \"status\": \"Awarded\",\n    \"isoCurrency\": \"AED\",\n    \"metric\": \"0\",\n    \"bidsDueDate\": \"20180125150000\",\n    \"artDueDate\": \"20180130150000\",\n    \"proofDueDate\": \"20180215150000\",\n    \"deliveryDate\": \"20180220150000\",\n    \"ordPrice\": 450.0,\n    \"ordNum\": \"1245689\",\n    \"rfqQuantities\": {\n        \"quantity\": [\n            \"1,000\",\n            \"2,000\",\n            \"3,000\",\n            \"4,000\"\n        ]\n    },\n    \"versions\": {\n        \"version\": [\n            \"Version 1 Black only\",\n            \"Version 2 full color\"\n        ]\n    },\n    \n    \"eventDescription\": \"Created and ordered job.\",\n    \"eventInitiator\": \"api@p3software.com\",\n    \"shipping\": \"Shipping Instructions test\",\n    \"specifications\": \"Adding a specification for this job.\",\n    \"notes\": \"here's a note\"\n}"},"url":"https://p3expeditor.com/api/v3/job","description":"<p>Create a job from a json record</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","job"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3a316dd0-6bdd-ab08-18ba-6ffc9ea7510c"},{"name":"Create Job Copy","id":"ade37ee0-426c-4511-9276-835187ed2870","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jobNumber\": \"000000001\",\n    \"jobName\": \"Job Name 5\",\n    \"creator\": \"qb@p3software.com\",\n    \"jobCategory1\": \"Job Category\",\n    \"jobCategory2\": \"Job Category\",\n    \"status\": \"Awarded\",\n    \"isoCurrency\": \"AED\",\n    \"metric\": \"0\",\n    \"bidsDueDate\": \"20180125150000\",\n    \"artDueDate\": \"20180130150000\",\n    \"proofDueDate\": \"20180215150000\",\n    \"deliveryDate\": \"20180220150000\",\n    \"ordPrice\": 450.0,\n    \"ordNum\": \"1245689\",\n    \"rfqQuantities\": {\n        \"quantity\": [\n            \"1,000\",\n            \"2,000\",\n            \"1,000\",\n            \"2,000\",\n            \"1,000\",\n            \"2,000\",\n            \"1,000\",\n            \"2,000\"\n        ]\n    },\n    \"versions\": {\n        \"version\": [\n            \"Version 1\",\n            \"Version 2\",\n            \"Version 1\",\n            \"Version 2\",\n            \"Version 1\",\n            \"Version 2\",\n            \"Version 1\",\n            \"Version 2\"\n        ]\n    },\n    \n    \"eventDescription\": \"Created and ordered job.\",\n    \"eventInitiator\": \"api@p3software.com\",\n    \n    \"specifications\": \"Adding a specification for this job.\"\n}"},"url":"https://p3expeditor.com/api/v3/job","description":"<p>Create a job from a json record</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","job"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ade37ee0-426c-4511-9276-835187ed2870"},{"name":"Create Job XML","id":"c2684f9f-79e7-bb66-b013-ef791c9299f8","request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/xml"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<customer>\n\t<company>Company Name Yep</company>\n</customer>  "},"url":"https://p3expeditor.com/api/v3/job","description":"<p>Create a job from an xml record</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","job"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c2684f9f-79e7-bb66-b013-ef791c9299f8"},{"name":"Update Job Json","id":"933c79c5-82d2-eabb-f3c2-7e7d3b78a8f9","request":{"method":"PUT","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jobIndex\": \"5a8a0466.PRJ\",\n    \"jobNumber\": \"000000001\",\n    \"jobName\": \"Job Name 5\",\n    \"custIndex\": \"5a835502\",\n    \"projIndex\": \"Project_5a83b6d5.xml\",\n    \"creator\": \"qb@p3software.com\",\n    \"jobCategory1\": \"Job Category\",\n    \"jobCategory2\": \"Job Category\",\n    \"status\": \"Awarded\",\n    \"curSymbol\": \"$\",\n    \"currency\": \"US Dollars\",\n    \"metric\": \"0\",\n    \"bidsDueDate\": \"20180125150000\",\n    \"artDueDate\": \"20180130150000\",\n    \"proofDueDate\": \"20180215150000\",\n    \"deliveryDate\": \"20180220150000\",\n    \"ordPrice\": 450.0,\n    \"ordNum\": \"1245689\",\n\n    \"eventDescription\": \"Created and ordered job.\",\n    \"eventInitiator\": \"api@p3software.com\",\n\n    \"awardTo\": \"5a2c2261\",\n\n    \"rfqQuantities\": [\n        \"1,000\",\n        \"2,000\"\n    ],\n\n    \"versions\": [\n        \"Version 1\",\n        \"Version 2\"\n    ],\n\n    \"bids\": [\n        {\n            \"supIndex\": \"5a2c2261\"\n        }\n    ],\n    \"purchaseOrder\":[\n        {\n            \"quantity\": 1000,\n            \"description\": \"A short description of the line item\",\n            \"price\": 500.00,\n            \"taxable\": false,\n            \"acctCode\": \"Accounting Code\"\n        },\n        {\n            \"quantity\": 2000,\n            \"description\": \"A short description of the line item\",\n            \"price\": 1000.00,\n            \"taxable\": false,\n            \"acctCode\": \"Accounting Code\"\n        }\n    ],\n    \"specifications\": \"Updating a jobspec\"\n}"},"url":"https://p3expeditor.com/api/v3/job/5a8a0466.PRJ","description":"<p>Update the job with a json PUT request</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","job","5a8a0466.PRJ"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"933c79c5-82d2-eabb-f3c2-7e7d3b78a8f9"},{"name":"Query Job List","id":"c6b3fd27-7500-b38d-60ea-0158c6b3b693","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"2c7ac6d59fe394ee2951dbdcf3cf904b"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"bidsDueDate\": {\n        \"end\": \"20230319235220\",\n        \"start\": \"20180319235059\"\n    }\n}"},"url":"https://p3expeditor.com/api/v3/job/query","description":"<p>Query the job list by a posted object. The object can contain any of the header level records and will return partial, case insensitive matches. The filter is exclusive, so the result set will return only records that match all submitted fields.</p>\n<h4 id=\"matching-rules\">Matching rules</h4>\n<p><strong>String Elements</strong> will be matched partially as case insentive matches.</p>\n<p><strong>Dates Elements</strong> can either be matched exactly as YYYYMMDDHHMMSS or you can supply a date range in the following form:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"lastMod\": {\n        \"start\": \"YYYYMMDDHHMMSS\",\n        \"end\": \"YYYYMMDDHHMMSS\",\n    }\n}\n\n</code></pre><p>Date Fields include:<br />'lastMod',<br />'bidsDueDate',<br />'artDueDate',<br />'proofDueDate',<br />'deliveryDate',<br />'artPlannedDate',<br />'proofPlannedDate',<br />'deliverPlannedDate',<br />'orderDate',<br />'compDate',<br />'createdDate',<br />'orderAuthDate',<br />'orderSentDate'</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","job","query"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c6b3fd27-7500-b38d-60ea-0158c6b3b693"},{"name":"Filter Job List","id":"eac765cd-bc55-6a13-70cf-a6b44d31c134","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"url":"https://p3expeditor.com/api/v3/job/query?start=20190129192132&end=20191229192632","description":"<p>Filter the job list by single key/value pair. The key can contain can be any job header field and will return partial, case insensitive matches.</p>\n","urlObject":{"protocol":"https","path":["api","v3","job","query"],"host":["p3expeditor.com"],"query":[{"key":"start","value":"20190129192132"},{"key":"end","value":"20191229192632"}],"variable":[]}},"response":[{"id":"8f65a1f4-5fc3-4ee8-b3e9-b59e7e7f2ed8","name":"Rochester Bad Example","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://p3expeditor.com/api/v3/job/query?Start=20190829192132&End=20190829192632","protocol":"https","host":["p3expeditor.com"],"path":["api","v3","job","query"],"query":[{"key":"Start","value":"20190829192132"},{"key":"End","value":"20190829192632"}]}},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Sep 2019 21:40:50 GMT"},{"key":"Server","value":"Apache"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.1.15"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"300"},{"key":"X-RateLimit-Remaining","value":"299"},{"key":"Set-Cookie","value":"laravel_session=7w10znRcbgTrFvM6alF6ttJBFRz1AmwCwx7hXTKF; expires=Wed, 04-Sep-2019 23:40:50 GMT; Max-Age=7200; path=/; httponly"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"sameorigin"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Content-Length","value":"155"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"Code\": 0,\n    \"Message\": \"File not found at path: 1979/query\",\n    \"File\": \"/var/p3/api/releases/24/vendor/league/flysystem/src/Filesystem.php\",\n    \"Line\": 389\n}"},{"id":"d1d08e8c-edfa-4d50-a031-4816a529903b","name":"Rochester Software Example","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"url":{"raw":"https://p3expeditor.com/api/v3/job/query?start=20190829192132&end=20190829192632","protocol":"https","host":["p3expeditor.com"],"path":["api","v3","job","query"],"query":[{"key":"start","value":"20190829192132"},{"key":"end","value":"20190829192632"}]}},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"eac765cd-bc55-6a13-70cf-a6b44d31c134"},{"name":"Create Job, Add Quantities, Add Bids and Award Job","id":"4aad8f49-d078-f72e-69a3-d7e707f3ebe5","request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"jobNumber\": \"000000001\",\n    \"jobName\": \"Job Name 5\",\n    \"custIndex\": \"5a835502\",\n    \"projIndex\": \"Project_5a83b6d5.xml\",\n    \"creator\": \"qb@p3software.com\",\n    \"jobCategory1\": \"Job Category\",\n    \"jobCategory2\": \"Job Category\",\n    \"status\": \"Awarded\",\n    \"curSymbol\": \"$\",\n    \"currency\": \"US Dollars\",\n    \"metric\": \"0\",\n    \"bidsDueDate\": \"20180125150000\",\n    \"artDueDate\": \"20180130150000\",\n    \"proofDueDate\": \"20180215150000\",\n    \"deliveryDate\": \"20180220150000\",\n    \"ordPrice\": 450.0,\n    \"ordNum\": \"1245689\",\n\n    \"eventDescription\": \"Created and ordered job.\",\n    \"eventInitiator\": \"api@p3software.com\",\n\n    \"awardTo\": \"5a2c2261\",\n\n    \"rfqQuantities\": [\n        \"1,000\",\n        \"2,000\"\n    ],\n\n    \"versions\": [\n        \"Version 1\",\n        \"Version 2\"\n    ],\n\n    \"bids\": [\n        {\n            \"supIndex\": \"5a2c2261\"\n        }\n    ],\n    \"purchaseOrder\":[\n        {\n            \"quantity\": 1000,\n            \"description\": \"A short description of the line item\",\n            \"price\": 500.00,\n            \"taxable\": false,\n            \"acctCode\": \"Accounting Code\"\n        },\n        {\n            \"quantity\": 2000,\n            \"description\": \"A short description of the line item\",\n            \"price\": 1000.00,\n            \"taxable\": false,\n            \"acctCode\": \"Accounting Code\"\n        }\n    ]\n}"},"url":"https://p3expeditor.com/api/v3/job","description":"<p>In a single query, you can create a job, add supplier bid records, add quantities and versions, add event notes and award the job.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","job"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"4aad8f49-d078-f72e-69a3-d7e707f3ebe5"},{"name":"Get Job Status","id":"3516213a-337c-3d5a-7cb0-696904be8f42","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"url":"https://p3expeditor.com/api/v3/job/status","description":"<p>The status for jobs is return as an enumerated value.  This method retrieves a list of statuses so you can create and read those job status values into meaningful statuses</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","job","status"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[{"id":"bc74abc0-8bd0-439c-a59e-b0594524dd0a","name":"Get Job Status: P3Source Default Values","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"url":"https://p3expeditor.com/api/v3/job/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 31 May 2019 14:20:03 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"300"},{"key":"X-RateLimit-Remaining","value":"297"},{"key":"Set-Cookie","value":"laravel_session=laBX50UQ3iNSdHQZ9VWSRrWhJlQ4hG2fOfb9hCLa; expires=Fri, 31-May-2019 16:20:03 GMT; Max-Age=7200; path=/; httponly"}],"cookie":[],"responseTime":null,"body":"[\n    \"Planning\",\n    \"Bids Requested\",\n    \"Awarded\",\n    \"Ordered\",\n    \"Complete\",\n    \"Canceled\",\n    \"On Hold\",\n    \"Reviewing Prices\"\n]"}],"_postman_id":"3516213a-337c-3d5a-7cb0-696904be8f42"},{"name":"Create Job with ISO Currency","id":"e523f721-1276-4a44-8bf0-19ae62383f58","request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"jobNumber\": \"000000001\",\n    \"jobName\": \"Job Name 5\",\n    \"custIndex\": \"54fb487e\",\n    \"creator\": \"qb@p3software.com\",\n    \"jobCategory1\": \"Job Category\",\n    \"jobCategory2\": \"Job Category\",\n    \"status\": \"Awarded\",\n    \"currencyIso\": \"AED\",\n    \"metric\": \"0\",\n    \"bidsDueDate\": \"20180125150000\",\n    \"artDueDate\": \"20180130150000\",\n    \"proofDueDate\": \"20180215150000\",\n    \"deliveryDate\": \"20180220150000\",\n    \"ordPrice\": 450.0,\n    \"ordNum\": \"1245689\",\n    \"rfqQuantities\": {\n        \"quantity\": [\n            \"1,000\",\n            \"2,000\",\n            \"1,000\",\n            \"2,000\",\n            \"1,000\",\n            \"2,000\",\n            \"1,000\",\n            \"2,000\"\n        ]\n    },\n    \"versions\": {\n        \"version\": [\n            \"Version 1\",\n            \"Version 2\",\n            \"Version 1\",\n            \"Version 2\",\n            \"Version 1\",\n            \"Version 2\",\n            \"Version 1\",\n            \"Version 2\"\n        ]\n    },\n    \n    \"eventDescription\": \"Created and ordered job.\",\n    \"eventInitiator\": \"api@p3software.com\",\n    \n    \"specifications\": \"Adding a specification for this job.\"\n}"},"url":"https://p3expeditor.com/api/v3/job","description":"<p>Create a job from a json record</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","job"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e523f721-1276-4a44-8bf0-19ae62383f58"}],"id":"bd4e1dd3-c155-640a-659a-dfc5d931bd86","_postman_id":"bd4e1dd3-c155-640a-659a-dfc5d931bd86","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}}},{"name":"Projects","item":[{"name":"Get Project List","id":"f22a03e9-8604-4ecb-c788-d04000331a0c","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{     \n  \"company\" : \"Company\"\n}"},"url":"https://p3expeditor.com/api/v3/project","description":"<p>Get a project list</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","project"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f22a03e9-8604-4ecb-c788-d04000331a0c"},{"name":"Get Project","id":"e2ea4fb0-96e7-46b2-762e-f5df8b67cce3","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"json","value":"{     \"apikey\":\"bc3a343aerw\" ,     \"query\":  {            \"CustIndex\":123455       }   }","type":"text"}]},"url":"https://p3expeditor.com/api/v3/project/Project_5a83b6d5.xml","description":"<p>Get a single project by the project id.  The project id is in the form Project_xxxxxxxx.xml</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","project","Project_5a83b6d5.xml"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e2ea4fb0-96e7-46b2-762e-f5df8b67cce3"},{"name":"Create Project","id":"a37c95b4-1b4d-7139-7a24-8d38b463f5f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"projectName\": \"Test Project Intro Note\",\n    \"projStatus\": \"Writing Proposal\",\n    \"projOwner\": \"ctt-ap@p3software.com\",\n    \"invDate\": \"20180120000000\",\n    \"invPONum\": \"123456\",\n    \"invTotalRev\": 2000.001,\n    \"invTotalTax\": 100.32008,\n    \"isoCurrency\": \"GBP\",\n    \"invIntro\": \"intro note\",\n    \"projSpecial1\": \"special data 1\",\n    \"projSpecial2\": \"special data 2\",\n    \"projSpecial3\": \"special data 3\",\n    \"projSpecial4\": \"special data 4\",\n    \"invoice\": {\n        \"line\": [\n        {\n            \"name\": \"Invoice Item Name\",\n            \"quantity\": \"\",\n            \"amount\": \"450\",\n            \"taxable\": 0,\n            \"extAcctItemId\": \"Accounting Code\",\n            \"custItemCode\": \"SKU or Item Id - Inventory or Customer\"\n        },\n        {\n            \"name\": \"Invoice Item Name\",\n            \"quantity\": \"300\",\n            \"amount\": \"1000\",\n            \"taxable\": 0,\n            \"extAcctItemId\": \"Accounting Code\",\n            \"custItemCode\": \"SKU or Item Id - Inventory or Customer\"\n        }\n    ]}\n}"},"url":"https://p3expeditor.com/api/v3/project","description":"<p>Create a new project.  In addition to header level fields, we also will accept an object of containing invoice line items.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","project"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[{"id":"faee7d39-3b3a-4e16-ba7a-b1056c6626a5","name":"Create Project","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"projectName\": \"Test Project Intro Note\",\n    \"projStatus\": \"Writing Proposal\",\n    \"projOwner\": \"ctt-ap@p3software.com\",\n    \"invDate\": \"20180120000000\",\n    \"invPONum\": \"123456\",\n    \"invTotalRev\": 2000.001,\n    \"invTotalTax\": 100.32008,\n    \"isoCurrency\": \"GBP\",\n    \"invIntro\": \"intro note\",\n    \"projSpecial1\": \"special data 1\",\n    \"projSpecial2\": \"special data 2\",\n    \"projSpecial3\": \"special data 3\",\n    \"projSpecial4\": \"special data 4\",\n    \"invoice\": {\n        \"line\": [\n        {\n            \"name\": \"Invoice Item Name\",\n            \"quantity\": \"\",\n            \"amount\": \"450\",\n            \"taxable\": 0,\n            \"extAcctItemId\": \"Accounting Code\",\n            \"custItemCode\": \"SKU or Item Id - Inventory or Customer\"\n        },\n        {\n            \"name\": \"Invoice Item Name\",\n            \"quantity\": \"300\",\n            \"amount\": \"1000\",\n            \"taxable\": 0,\n            \"extAcctItemId\": \"Accounting Code\",\n            \"custItemCode\": \"SKU or Item Id - Inventory or Customer\"\n        }\n    ]}\n}"},"url":"https://p3expeditor.com/api/v3/project"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Mar 2022 21:42:49 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"300"},{"key":"X-RateLimit-Remaining","value":"299"},{"key":"Set-Cookie","value":"laravel_session=K7KljbP39gSIRcswhuEoVKh0uPOlfquosp6Rq7s4; expires=Tue, 01-Mar-2022 23:42:49 GMT; Max-Age=7200; path=/; httponly"}],"cookie":[],"responseTime":null,"body":"{\n    \"projIndex\": \"Project_621e9358.xml\",\n    \"lastMod\": 1646170969,\n    \"projectName\": \"Test Project Intro Note\",\n    \"company\": \"\",\n    \"custIndex\": \"\",\n    \"projStatus\": 0,\n    \"projOwner\": \"ctt-ap@p3software.com\",\n    \"propDate\": \"\",\n    \"propNumber\": \"00000000000208\",\n    \"invDate\": \"20180120000000\",\n    \"invNumber\": \"00000000000208\",\n    \"invPONum\": \"123456\",\n    \"invTotalRev\": \"2000.001\",\n    \"invTotalTax\": \"100.32008\",\n    \"currSym\": \"&#163;\",\n    \"optCount\": \"\",\n    \"posCostTotal\": \"\",\n    \"actCostTotal\": \"\",\n    \"createdDate\": \"20220301164248\",\n    \"numJobs\": \"\",\n    \"salesRep\": \"\",\n    \"active\": \"1\",\n    \"notes\": \"\",\n    \"history\": \"\",\n    \"brief\": \"\",\n    \"custAuth\": \"\",\n    \"custAuthType\": \"\",\n    \"custAuthCMT\": \"\",\n    \"custAuthCode\": \"\",\n    \"projSpecial1\": \"special data 1\",\n    \"projSpecial2\": \"special data 2\",\n    \"projSpecial3\": \"special data 3\",\n    \"projSpecial4\": \"special data 4\",\n    \"qbSync\": \"\",\n    \"INVMARPOS\": \"\",\n    \"INVMARACT\": \"\",\n    \"INVMARPOSPCT\": \"\",\n    \"INVMARACTPCT\": \"\",\n    \"PROP1MAR\": \"\",\n    \"PROPAVEMAR\": \"\",\n    \"PROP1MARPCT\": \"\",\n    \"PROPAVEMARPCT\": \"\",\n    \"INVTOTALWTAX\": \"\",\n    \"currency\": \"British Pound Sterling\",\n    \"isoCurrency\": \"GBP\",\n    \"invIntro\": \"intro note\",\n    \"invoice\": {\n        \"line\": [\n            {\n                \"index\": \"Project_621e9358.xml_621e935a\",\n                \"name\": \"Invoice Item Name\",\n                \"quantity\": \"\",\n                \"amount\": \"450\",\n                \"taxable\": 0,\n                \"extAcctItemId\": \"Accounting Code\",\n                \"custItemCode\": \"SKU or Item Id - Inventory or Customer\"\n            },\n            {\n                \"index\": \"Project_621e9358.xml_621e935b\",\n                \"name\": \"Invoice Item Name\",\n                \"quantity\": \"300\",\n                \"amount\": \"1000\",\n                \"taxable\": 0,\n                \"extAcctItemId\": \"Accounting Code\",\n                \"custItemCode\": \"SKU or Item Id - Inventory or Customer\"\n            }\n        ]\n    }\n}"}],"_postman_id":"a37c95b4-1b4d-7139-7a24-8d38b463f5f6"},{"name":"Create Project XML","id":"899eefaa-de47-8304-5145-eb6fa47c6b33","request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/xml"},{"key":"Accept","value":"application/xml"}],"body":{"mode":"raw","raw":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<customer>\n\t<company>Company Name Yep</company>\n</customer>  "},"url":"https://p3expeditor.com/api/v3/customer","description":"<p>Rest update customer</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","customer"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"899eefaa-de47-8304-5145-eb6fa47c6b33"},{"name":"Update Project Json","id":"b6882ca7-cdfc-ff25-c69c-4a1080425ad8","request":{"method":"PUT","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"projectName\": \"Test Project\",\n    \"company\": \"Company Name Company\",\n    \"custIndex\": \"5a835502\",\n    \"projStatus\": 0,\n    \"projOwner\": \"ctt-ap@p3software.com\",\n    \"propDate\": \"\",\n    \"propNumber\": \"00000001\",\n    \"invIntro\": \"intro note\",\n    \"invDate\": \"20180120000000\",\n    \"invNumber\": \"00000002\",\n    \"invPONum\": \"123456\",\n    \"invTotalRev\": \"2000.001\",\n    \"invTotalTax\": \"100.32008\",\n    \"currSym\": \"$\",\n    \"optCount\": \"\",\n    \"posCostTotal\": \"\",\n    \"actCostTotal\": \"\",\n    \"createdDate\": \"20180214041101\",\n    \"numJobs\": \"\",\n    \"salesRep\": \"\",\n    \"active\": \"1\",\n    \"notes\": \"\",\n    \"history\": \"\",\n    \"brief\": \"\",\n    \"custAuth\": \"\",\n    \"custAuthType\": \"\",\n    \"custAuthCMT\": \"\",\n    \"custAuthCode\": \"\",\n    \"qbSync\": \"\",\n    \"invoice\":{\n        \"line\": [\n        {\n            \"name\": \"Invoice Item Name\",\n            \"quantity\": \"100\",\n            \"amount\": \"450\",\n            \"taxable\": 0,\n            \"extAcctItemId\": \"Accounting Code\",\n            \"custItemCode\": \"SKU or Item Id - Inventory or Customer\"\n        },\n        {\n            \"name\": \"Invoice Item Name\",\n            \"quantity\": \"300\",\n            \"amount\": \"1000\",\n            \"taxable\": 0,\n            \"extAcctItemId\": \"Accounting Code\",\n            \"custItemCode\": \"SKU or Item Id - Inventory or Customer\"\n        }\n    ]}\n}"},"url":"https://p3expeditor.com/api/v3/project/Project_5a83b6d5.xml","description":"<p>Update a project.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","project","Project_5a83b6d5.xml"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b6882ca7-cdfc-ff25-c69c-4a1080425ad8"},{"name":"Query Projects List","id":"4cc71d31-2b38-fece-8bf0-f633ba463b66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{\n \"lastMod\" : {\n    \"start\" : 20200101000000,\n    \"end\" : 20200110000000\n \t\n }\n}"},"url":"https://p3expeditor.com/api/v3/project/query","description":"<h4 id=\"query-the-project-list-by-a-posted-object\">Query the project list by a posted object.</h4>\n<ul>\n<li>The object can contain any of the header level records and will return partial, case insensitive matches.  </li>\n<li>The filter is exclusive, so the result set will return only records that match all submitted fields.</li>\n</ul>\n<h4 id=\"matching-rules\">Matching rules</h4>\n<ul>\n<li>Strings will be matched partially as case insentive matches.</li>\n<li>Dates can either be matched exactly as YYYYDDMMHHMMSS or you can supply a date range in the following form</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"lastMod\": {\n        \"start\": \"YYYYMMDDHHMMSS\",\n        \"end\": \"YYYYMMDDHHMMSS\",\n    }\n}\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","project","query"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[{"id":"85aca0c6-751c-4f0c-90ea-2536af25b64c","name":"Query Projects List results for: company: \"test\"","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{     \n  \"company\" : \"Test\"\n}"},"url":"https://p3expeditor.com/api/v3/project/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Date","value":"Wed, 05 Jun 2019 16:33:46 GMT"},{"key":"X-RateLimit-Limit","value":"300"},{"key":"X-RateLimit-Remaining","value":"299"},{"key":"Set-Cookie","value":"laravel_session=D3algGvL68rCfvgtnGxKrTJe8dNpqFqSN2dH6v4T; expires=Wed, 05-Jun-2019 18:33:46 GMT; Max-Age=7200; path=/; httponly"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"projIndex\": \"Project_49baa853.xml\",\n        \"lastMod\": \"1259863603\",\n        \"projectName\": \"Test Project 2\",\n        \"company\": \"test\",\n        \"custIndex\": \"46a8ceec\",\n        \"projStatus\": \"0\",\n        \"projOwner\": \"ctt@p3software.com\",\n        \"propDate\": \"20080214120000\",\n        \"propNumber\": \"12345678\",\n        \"invDate\": \"20080213120000\",\n        \"invNumber\": \"00000002\",\n        \"invPONum\": \"\",\n        \"invTotalRev\": \"650.0\",\n        \"invTotalTax\": \"0.0\",\n        \"currSym\": \"$\",\n        \"optCount\": \"3\",\n        \"posCostTotal\": \"678.0\",\n        \"actCostTotal\": \"0.0\",\n        \"createdDate\": \"20090313143915\",\n        \"numJobs\": \"1\",\n        \"salesRep\": \"\",\n        \"active\": 1,\n        \"notes\": \"\",\n        \"history\": \"\",\n        \"brief\": \"\",\n        \"custAuth\": \"\",\n        \"custAuthType\": \"\",\n        \"custAuthCMT\": \"\",\n        \"custAuthCode\": \"\",\n        \"qbSync\": \"\",\n        \"INVMARPOS\": \"\",\n        \"INVMARACT\": \"\",\n        \"INVMARPOSPCT\": \"\",\n        \"INVMARACTPCT\": \"\",\n        \"PROP1MAR\": \"\",\n        \"PROPAVEMAR\": \"\",\n        \"PROP1MARPCT\": \"\",\n        \"PROPAVEMARPCT\": \"\",\n        \"INVTOTALWTAX\": \"\"\n    },\n    {\n        \"projIndex\": \"Project_4c783cc6.xml\",\n        \"lastMod\": \"1283028186\",\n        \"projectName\": \"asdfghjk\",\n        \"company\": \"BBB-BBB test123 \",\n        \"custIndex\": \"4bc47ac2\",\n        \"projStatus\": \"0\",\n        \"projOwner\": \"ctt-ap@p3software.com\",\n        \"propDate\": \"\",\n        \"propNumber\": \"\",\n        \"invDate\": \"\",\n        \"invNumber\": \"\",\n        \"invPONum\": \"\",\n        \"invTotalRev\": \"0.0\",\n        \"invTotalTax\": \"0.0\",\n        \"currSym\": \"$\",\n        \"optCount\": \"3\",\n        \"posCostTotal\": \"0.0\",\n        \"actCostTotal\": \"0.0\",\n        \"createdDate\": \"20100827183134\",\n        \"numJobs\": \"1\",\n        \"salesRep\": \"\",\n        \"active\": 1,\n        \"notes\": \"\",\n        \"history\": \"\",\n        \"brief\": \"\",\n        \"custAuth\": \"\",\n        \"custAuthType\": \"\",\n        \"custAuthCMT\": \"\",\n        \"custAuthCode\": \"\",\n        \"qbSync\": \"\",\n        \"INVMARPOS\": \"\",\n        \"INVMARACT\": \"\",\n        \"INVMARPOSPCT\": \"\",\n        \"INVMARACTPCT\": \"\",\n        \"PROP1MAR\": \"\",\n        \"PROPAVEMAR\": \"\",\n        \"PROP1MARPCT\": \"\",\n        \"PROPAVEMARPCT\": \"\",\n        \"INVTOTALWTAX\": \"\"\n    },\n    {\n        \"projIndex\": \"Project_4c795d68.xml\",\n        \"lastMod\": \"1283132271\",\n        \"projectName\": \"testy proj\",\n        \"company\": \"DDD-DDD testing123\",\n        \"custIndex\": \"4bc47bad\",\n        \"projStatus\": \"0\",\n        \"projOwner\": \"ctt-ap@p3software.com\",\n        \"propDate\": \"20100830120000\",\n        \"propNumber\": \"\",\n        \"invDate\": \"\",\n        \"invNumber\": \"\",\n        \"invPONum\": \"\",\n        \"invTotalRev\": \"0.0\",\n        \"invTotalTax\": \"0.0\",\n        \"currSym\": \"$\",\n        \"optCount\": \"3\",\n        \"posCostTotal\": \"0.0\",\n        \"actCostTotal\": \"0.0\",\n        \"createdDate\": \"20100828150304\",\n        \"numJobs\": \"1\",\n        \"salesRep\": \"\",\n        \"active\": 1,\n        \"notes\": \"\",\n        \"history\": \"\",\n        \"brief\": \"\",\n        \"custAuth\": \"\",\n        \"custAuthType\": \"\",\n        \"custAuthCMT\": \"\",\n        \"custAuthCode\": \"\",\n        \"qbSync\": \"\",\n        \"INVMARPOS\": \"\",\n        \"INVMARACT\": \"\",\n        \"INVMARPOSPCT\": \"\",\n        \"INVMARACTPCT\": \"\",\n        \"PROP1MAR\": \"\",\n        \"PROPAVEMAR\": \"\",\n        \"PROP1MARPCT\": \"\",\n        \"PROPAVEMARPCT\": \"\",\n        \"INVTOTALWTAX\": \"\"\n    },\n    {\n        \"projIndex\": \"Project_5a29e674.xml\",\n        \"lastMod\": \"1559155740\",\n        \"projectName\": \"QA: Duplicate specs 3\",\n        \"company\": \"test\",\n        \"custIndex\": \"5a29e673\",\n        \"projStatus\": \"0\",\n        \"projOwner\": \"qb@p3software.com\",\n        \"propDate\": \"\",\n        \"propNumber\": \"Jobnum702\",\n        \"invDate\": \"\",\n        \"invNumber\": \"\",\n        \"invPONum\": \"\",\n        \"invTotalRev\": \"0.0\",\n        \"invTotalTax\": \"0.0\",\n        \"currSym\": \"$\",\n        \"optCount\": \"0\",\n        \"posCostTotal\": \"3670.0\",\n        \"actCostTotal\": \"0.0\",\n        \"createdDate\": \"20171207201012\",\n        \"numJobs\": \"1\",\n        \"salesRep\": \"\",\n        \"active\": 1,\n        \"notes\": \"\",\n        \"history\": \"Project created on 07-12-2017 20:10:11 EST- Via P3Connect:     Customer Name: test (duplicate3@gmail.com)    From Form: Easy Specification\",\n        \"brief\": \"  Project Information  Project Name:  QA: Duplicate specs 3 General Information  Quote Needed By:  28-12-2017 00:00   Delivery Date:  30-12-2017 Services Needed      Digital Printing,  Apparel    Specification Details  Quantity:            1000      Proje\",\n        \"custAuth\": \"\",\n        \"custAuthType\": \"\",\n        \"custAuthCMT\": \"\",\n        \"custAuthCode\": \"\",\n        \"qbSync\": \"\\n\",\n        \"INVMARPOS\": \"\",\n        \"INVMARACT\": \"\",\n        \"INVMARPOSPCT\": \"\",\n        \"INVMARACTPCT\": \"\",\n        \"PROP1MAR\": \"\",\n        \"PROPAVEMAR\": \"\",\n        \"PROP1MARPCT\": \"\",\n        \"PROPAVEMARPCT\": \"\",\n        \"INVTOTALWTAX\": \"\"\n    },\n    {\n        \"projIndex\": \"Project_5a99d5e5.xml\",\n        \"lastMod\": \"1558631219\",\n        \"projectName\": \"QA: Sales Rep Test\",\n        \"company\": \"Test Company 20150512010358\",\n        \"custIndex\": \"5552331d\",\n        \"projStatus\": \"2\",\n        \"projOwner\": \"qb@p3software.com\",\n        \"propDate\": \"20180322000000\",\n        \"propNumber\": \"NUM00716\",\n        \"invDate\": \"\",\n        \"invNumber\": \"\",\n        \"invPONum\": \"po\",\n        \"invTotalRev\": \"1000.0\",\n        \"invTotalTax\": \"0.0\",\n        \"currSym\": \"$\",\n        \"optCount\": \"1\",\n        \"posCostTotal\": \"0.0\",\n        \"actCostTotal\": \"0.0\",\n        \"createdDate\": \"20180302175325\",\n        \"numJobs\": \"1\",\n        \"salesRep\": \"BTest Sales Rep\",\n        \"active\": 1,\n        \"notes\": \"\",\n        \"history\": \"11/26/18 10:07 AM MST - Project: Proposal Email Sent: To: testlicensecreate2@gmail.comCC: qb@p3software.comAttachments: Project_Proposal_NUM00716_-_QA_Sales_Rep_Test.pdfBy: qb@p3software.com11/12/18 10:59 PM EST - Project: Proposal Email Sent: To: testlicensecreate2@gmail.comCC: qb@p3software.comAttachments: None.By: qb@p3software.com Comment: Test Cost Code: 345 Customer PO: poProject Order Received Via Online Response Page  - On: Mar 04, 2018 23:05:08 EST    Authorized By: test@gmail.com    Total with Tax: $1,000.003/4/18 9:03 PM MST - Status changed to: 'Proposal Sent' from: 'Writing Proposal'By: qb@p3software.com3/4/18 9:03 PM MST - Project: Proposal Email Sent: To: testlicensecreate2@gmail.comCC: qb@p3software.comAttachments: /private/var/folders/by/l5h23yrn5x9gvmvr4z3c39k40000gn/T/Project_Proposal_NUM00716_-_QA_Sales_Rep_Test.pdfBy: qb@p3software.comProject created on 02-03-2018 17:53:24 EST- Via P3Connect:     Customer Name:  (testlicensecreate2@gmail.com)    From Form: Easy Specification\",\n        \"brief\": \"  Project Information  Project Name:  QA: Sales Rep Test General Information  Quote Needed By:  29-03-2018 00:00   Delivery Date:  31-03-2018 Services Needed      Offset Printing,  Packaging    Specification Details  Quantity:            123344      Proje\",\n        \"custAuth\": \"test@gmail.com\",\n        \"custAuthType\": \"Online Response\",\n        \"custAuthCMT\": \"2018-03-04 New Order Note: Test\",\n        \"custAuthCode\": \"345\",\n        \"qbSync\": \"\\n\",\n        \"INVMARPOS\": \"\",\n        \"INVMARACT\": \"\",\n        \"INVMARPOSPCT\": \"\",\n        \"INVMARACTPCT\": \"\",\n        \"PROP1MAR\": \"\",\n        \"PROPAVEMAR\": \"\",\n        \"PROP1MARPCT\": \"\",\n        \"PROPAVEMARPCT\": \"\",\n        \"INVTOTALWTAX\": \"\"\n    },\n    {\n        \"projIndex\": \"Project_5c56269f.xml\",\n        \"lastMod\": \"1549149856\",\n        \"projectName\": \"QA: Salesrep 0.6.1\",\n        \"company\": \"Test Company 20150512010358\",\n        \"custIndex\": \"5552331d\",\n        \"projStatus\": \"0\",\n        \"projOwner\": \"softera@gmail.com\",\n        \"propDate\": \"\",\n        \"propNumber\": \"NUM00776\",\n        \"invDate\": \"\",\n        \"invNumber\": \"\",\n        \"invPONum\": \"\",\n        \"invTotalRev\": \"0.0\",\n        \"invTotalTax\": \"0.0\",\n        \"currSym\": \"$\",\n        \"optCount\": \"\",\n        \"posCostTotal\": \"\",\n        \"actCostTotal\": \"\",\n        \"createdDate\": \"20190202112416\",\n        \"numJobs\": \"\",\n        \"salesRep\": \"BTest Sales Rep\",\n        \"active\": 1,\n        \"notes\": \"\",\n        \"history\": \"Project created on 02/02/2019 18:24:15 EST&#10;- Via P3Connect: &#10;    Customer Name:  (testlicensecreate2@gmail.com)&#10;    From Form: Easy Specification&#10;\",\n        \"brief\": \"  Project InformationProject Name:  QA: Salesrep 0.6.1 &#10;Customer Contact Information:  Name: Test User       Company: Test Company 20150512010358      Email: testlicensecreate2@gmail.com        Address: 1 Charles Street      City: San Fran\",\n        \"custAuth\": \"\",\n        \"custAuthType\": \"\",\n        \"custAuthCMT\": \"\",\n        \"custAuthCode\": \"\",\n        \"qbSync\": \"\",\n        \"INVMARPOS\": \"\",\n        \"INVMARACT\": \"\",\n        \"INVMARPOSPCT\": \"\",\n        \"INVMARACTPCT\": \"\",\n        \"PROP1MAR\": \"\",\n        \"PROPAVEMAR\": \"\",\n        \"PROP1MARPCT\": \"\",\n        \"PROPAVEMARPCT\": \"\",\n        \"INVTOTALWTAX\": \"\"\n    }\n]"}],"_postman_id":"4cc71d31-2b38-fece-8bf0-f633ba463b66"},{"name":"Filter Project List","id":"3ebbd08d-4471-7fb8-be6a-12b74113f29d","request":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"body":{"mode":"raw","raw":"{     \n  \"company\" : \"Company\",\n  \"contact\": \"test\"\n}"},"url":"https://p3expeditor.com/api/v3/project/query/projectName/test","description":"<p>Filter the project list by single key/value pair. The key can contain can be any project header field and will return partial, case insensitive matches.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}},"urlObject":{"protocol":"https","path":["api","v3","project","query","projectName","test"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ebbd08d-4471-7fb8-be6a-12b74113f29d"},{"name":"Get Project Status","id":"a650912a-40e9-6d0d-ee8e-d60eb3148e5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{api_key}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"url":"https://p3expeditor.com/api/v3/project/status","description":"<p>The status for projects is return as an enumerated value.  This method retrieves a list of project statuses so you can create and read those project status values into meaningful statuses</p>\n","urlObject":{"protocol":"https","path":["api","v3","project","status"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a650912a-40e9-6d0d-ee8e-d60eb3148e5d"},{"name":"Get Project Status Enumeration","id":"15e3f62c-95d7-4720-b779-e0718f72fdfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"apikey"},{"key":"value","value":"{{api_key}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"url":"https://p3expeditor.com/api/v3/project/status_enumeration","description":"<p>This endpoint delivers the current set of P3Source Project Status levels. Each level has a \"label\" and an enumeration \"key\" value.</p>\n<p>The order that the set of levels is presented in is deliberate. It represents the sequence of the work flow steps. The labels should be displayed according to their position in the array. When sorting records by status this ordering should also be used.</p>\n","urlObject":{"protocol":"https","path":["api","v3","project","status_enumeration"],"host":["p3expeditor.com"],"query":[],"variable":[]}},"response":[{"id":"d1ed658b-a967-4ecd-9461-557ad533e39b","name":"Get Project Status Enumeration","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{api_key}}"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json"}],"url":"https://p3expeditor.com/v3/project/status_enumeration"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 28 Feb 2022 18:12:55 GMT"},{"key":"Content-Type","value":"application/json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"X-RateLimit-Limit","value":"300"},{"key":"X-RateLimit-Remaining","value":"299"},{"key":"Set-Cookie","value":"laravel_session=TDFSrtRZ8F6gq9mWqt9xwGOAF9pwv4nbGwxGOuwc; expires=Mon, 28-Feb-2022 20:12:55 GMT; Max-Age=7200; path=/; httponly"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"label\": \"Writing Proposal\",\n        \"key\": \"0\"\n    },\n    {\n        \"label\": \"Proposal Sent\",\n        \"key\": \"1\"\n    },\n    {\n        \"label\": \"Proposal Accepted\",\n        \"key\": \"2\"\n    },\n    {\n        \"label\": \"Job Ordered\",\n        \"key\": \"3\"\n    },\n    {\n        \"label\": \"Job Delivered\",\n        \"key\": \"4\"\n    },\n    {\n        \"label\": \"Writing Invoice\",\n        \"key\": \"5\"\n    },\n    {\n        \"label\": \"Invoice Sent\",\n        \"key\": \"6\"\n    },\n    {\n        \"label\": \"Invoice Paid\",\n        \"key\": \"7\"\n    },\n    {\n        \"label\": \"Project Completed\",\n        \"key\": \"8\"\n    },\n    {\n        \"label\": \"Proposal Declined\",\n        \"key\": \"9\"\n    },\n    {\n        \"label\": \"On Hold\",\n        \"key\": \"10\"\n    }\n]"}],"_postman_id":"15e3f62c-95d7-4720-b779-e0718f72fdfc"}],"id":"5f562c2b-c539-b522-a4f5-3edde8c405ee","_postman_id":"5f562c2b-c539-b522-a4f5-3edde8c405ee","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]},"isInherited":true,"source":{"_postman_id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","id":"6bbfcb1a-fb37-f71c-fdc3-0714c60acb33","name":"REST V3","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"Authorization"},{"key":"value","value":"{{api_key}}"}]}},"event":[{"listen":"prerequest","script":{"id":"6f374848-1db0-410d-9806-b7c9836be33e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a8843cd8-6e14-4042-93f4-dba77d89c856","type":"text/javascript","exec":["// example using pm.response.to.have","pm.test(\"response is ok\", function () {","    pm.response.to.have.status(200);","});","","// Validate that we are running against the right test","pm.test(\"environment to be p3 test api\", function () { ","    pm.expect(pm.environment.get(\"env\")).to.equal(\"p3_test\"); ","});","","// Make sure we are always returning a content type","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","","","// Make sure our response is json","pm.test(\"response must be valid and have a body\", function () {","     pm.response.to.be.json; // this assertion also checks if a body  exists, so the above check is not needed","});","","","// Check to make sure that we got a json response that can be parsed","pm.test(\"response should be okay to process\", function () { ","    pm.response.to.not.be.error; ","    pm.response.to.have.jsonBody(\"\"); ","    pm.response.to.not.have.jsonBody(\"error\"); ","});"]}}],"variable":[{"key":"api_key","value":"","type":"string","disabled":true},{"key":"url","value":"p3expeditor.com","type":"string"},{"key":"bypass","value":"","type":"string","disabled":true}]}